body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 16px;
    font-family: sans-serif;
    background-color: #fbfbfb;
}

.container {
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
    display: block;
}
.preview-container {
    max-width: 800px;
    margin: 0 auto;
    display: block;
}
.form {
    max-width: 800px;
    margin: 0 auto;
}
.title {
    color: #83C0D6;
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}
.step-1 {
    background: #fbfbfb;
    height: 100%;
    padding-top: 60px;
}

.mn-input {
    height: 60px;
    line-height: 60px;
    min-width: 350px;
    font-size: 16px;
    padding: 20px 30px;
    box-sizing: border-box;
    border-color: transparent;
    border: 1px solid #e2e2e2;
    margin: 0 0 25px 0;
    flex: 1;
}
.mn-input::placeholder {
    color: #999999;
}
.mn-input:focus {
    border-color: #83C0D6;
    outline: none;
}
.mn-select {
    height: 60px;
    min-width: 350px;
    font-size: 16px;
    margin: 0 0 25px 0;
    outline: none;
    border-color: transparent;
    border: 1px solid #e2e2e2;
}
.btn {
    height: 60px;
    font-size: 16px;
    text-align: center;
    margin: 40px 13px 0 0;
    padding: 20px 30px;
    border: none;
    min-width: 260px;
    width: 100%;
    outline: none;
    cursor: pointer;
    color: #ffffff;
    background-color: #83C0D6;
    border: 1px solid;
    transition: all .15s ease-in;
}
.btn.red {
    color: tomato;
    background-color: transparent;
}
.btn.red:hover {
    color: white;
    background: tomato;
}
.btn.success,
.btn.success:hover {
    background-color: #89C03E;
    color: white;
}
.btn.error,
.btn.error:hover {
    background-color: tomato;
    color: white;
}
.btn:hover {
    color: white;
    background: #2B699D;
}
.hidden,
#copycode {
    display: none;
}
.row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.row input,
.row select {
    flex: 1 1 50%;
    max-width: 48%;
}
.spacer {
    height: 80px;
}
#preview {
    background: white;
    margin-top: 30px;
}