@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap');

* {
    font-family: 'Open Sans', sans-serif;
}

@media (min-width:1200px) {
    .container {
        max-width: 1074px;
    }
}

.springboard-form {
    background-color: #003057;
    border-radius: 30px;
    padding: 30px;
}

.springboard-form .title {
    font-size: 26px;
    font-weight: 600;
    color: #FFFFFF;
}

.steps-wrapper {
    display: flex;
    border: 2px solid #D2DB0E;
    border-radius: 30px;
    overflow: hidden;
    padding: 0;
}

.mt-15, .my-15 {
    margin-top: 15px;
}

.mb-15, .my-15 {
    margin-bottom: 15px;
}

.mt-30,
.my-30 {
    margin-top: 30px;
}

.mb-30,
.my-30 {
    margin-bottom: 30px;
}

.steps-wrapper .step {
    width: 50%;
    height: 40px;
    text-align: center;
    font-size: 16px;
    line-height: 40px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    text-transform: uppercase;
}

.steps-wrapper .step.active {
    background: #D2DB0E;
    border-radius: 30px;
    color: #003057;
}

.form-input-wrapper {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.08px;
    color: #FFFFFF;
}

.form-input-wrapper select, input {
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #505759;
    border-radius: 5px;
    font: normal normal normal 16px/24px Open Sans;
    font-size: 16px;
    letter-spacing: 0.08px;
    color: #505759;
    padding: 0 7px;
    outline: 0 !important;
}

.springboard-form hr {
    border-color: #FFFFFF;
}

.next-step-btn, .submit-btn {
    display: block;
    outline: 0 !important;
    cursor: pointer;
    width: 144px;
    height: 40px;
    border: 2px solid #D2DB0E;
    border-radius: 20px;
    background: transparent;
    text-align: center;
    font-size: 16px;
    line-height: 35px;
    font-weight: 600;
    letter-spacing: 0.8px;
    color: #FFFFFF;
}

.next-step-btn:hover,
.submit-btn:hover {
    background: #D2DB0E;
    color: #003057;
}

.form-footer-text,
.form-footer-text a {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    color: #FFFFFF;
}

.form-footer-text a {
    text-decoration: underline;
}

.form-footer-text a:hover {
    text-decoration: none;
}

.form-input-wrapper .error {
    font-size: 12px;
    font-weight: 600;
    font-style: italic;
    color: #505759;
    position: relative;
    padding-left: 18px;
    margin-top: 4px;
}
.form-input-wrapper .error::before {
    content: "";
    width: 14px;
    height: 14px;
    background: url(../images/info-icon.svg) no-repeat;
    background-size: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.form-input-wrapper select {
    -webkit-appearance: none;
    appearance: none;
    background: #FFFFFF url(../images/chevron.svg) no-repeat 98% center;
    background-size: 10px 16px;
}

.form-input-wrapper select+.error,
.form-input-wrapper input+.error {
    display: none;
}

.form-input-wrapper select.invalid {
    background: #FFE8E8 url(../images/chevron.svg) no-repeat 98% center;
    background-size: 10px 16px;
    border: 3px solid #F43F41;
}

.form-input-wrapper input.invalid {
    background: #FFE8E8;
    border: 3px solid #F43F41;
}

.form-input-wrapper select.invalid+.error,
.form-input-wrapper input.invalid+.error {
    display: block;
}

.checkbox-wrapper {
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    letter-spacing: -0.11px;
    color: #FFFFFF;
    cursor: pointer;
    position: relative;
    padding-left: 28px;
}

#conset-allow-checkbox {
    position: relative;
    visibility: hidden;
    -moz-appearance: initial;
    -webkit-appearance: initial;
    -ms-appearance: initial;
    appearance: initial;
    width: 0;
    height: 0;
    padding: 0;
}

#conset-allow-checkbox::before {
    content: "";
    width: 20px;
    height: 20px;
    background: transparent;
    border: 2px solid #D2DB0E;
    border-radius: 5px;
    position: absolute;
    top: 0;
    left: -1.8rem;
    visibility: visible;
}

#conset-allow-checkbox:checked::before {
    background: #D2DB0E url(../images/checked-icon.svg) no-repeat center;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}