.wav {
    max-width: 1200px;
    margin: auto;
    padding: 30px 15px;
    text-align: center;
}

@media screen and (max-width: 576px) {
    .wav {
        padding: 15px;
    }

    .wav br {
        display: none;
    }
}

.wav__wrapper {
    width: 100%;
    height: 100vh;
    background: #6d6d6d;
    justify-content: center;
    align-items: center;
    display: flex;
    z-index: 99;
}

.wav__disclaimer {
    margin-bottom: 30px;
    color: #fff;
}

.wav h1 {
    margin-bottom: 30px;
    font-size: 60px;
    line-height: 66px;
    color: #fff;
}

@media screen and (max-width: 576px) {
    .wav h1 {
        font-size: 34px;
        line-height: 40px;
    }
}

.wav button {
    color: #fff;
    background: #ea7d20;
    padding: 15px 40px;
    border: 0;
    margin-top: 20px;
}

.wav button[disabled] {
    opacity: 0.5;
    cursor: not-allowed;
}

.wav__input-fields {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wav__field {
    display: flex;
    flex-direction: column;
    margin: 0 10px;
}

.wav__remember-me {
    margin-top: 15px;
    display: block;
    color: #fff;
}

.wav input[type=number] {
    width: 80px;
    height: 60px;
    border: 0;
    outline: none;
    font-size: 32px;
    padding: 7px;
    color: #fff;
    text-align: center;
    background: transparent;
    border-bottom: 2px solid #fff;
    border-radius: 0;
}

.wav input[type=number]:focus {
    border-bottom: 2px solid #ea7d20;
}

.wav input[type=number]::placeholder {
    color: #fff;
}

.wav input[type=number]:focus::placeholder {
    opacity: 0.3;
}

@media screen and (max-width: 576px) {
    .wav input[type=number] {
        width: 60px;
        height: 50px;
        font-size: 24px;
    }
}

.wav input#wav-year {
    width: 120px;
}

@media screen and (max-width: 576px) {
    .wav input#wav-year {
        width: 80px;
    }
}

.wav input::-webkit-outer-spin-button,
.wav input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.wav input[type=number] {
    -moz-appearance: textfield;
}

.wav input[type=checkbox] {
    -webkit-appearance: button;
    appearance: none;
    background-color: #fff;
    border: 0;
    padding: 9px;
    margin-right: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    top: 3px;
}

.wav input[type=checkbox]:focus {
    outline: none;
}

.wav input[type=checkbox]:checked {
    background-color: #ea7d20;
}

.wav input[type=checkbox]:checked:after {
    content: "X";
    color: #fff;
    position: absolute;
    left: 4px;
    top: 1px;
}

.wav label {
    cursor: pointer;
}

.wav__logo img {
    width: 220px;
    height: auto;
    margin-bottom: 20px;
}

@media screen and (max-width: 576px) {
    .wav__logo img {
        width: 160px;
        height: auto;
        margin-bottom: 15px;
    }
}

.wav-modal {
    padding: 40px;
    background-color: #fff;
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-box-shadow: 0 0 18px -4px rgba(89,89,89,1);
    -moz-box-shadow: 0 0 18px -4px rgba(89,89,89,1);
    box-shadow: 0 0 18px -4px rgba(89,89,89,1);
    z-index: 9999;
}

@media screen and (max-width: 768px) {
    .wav-modal {
        padding: 40px 20px;
        width: 100%;
    }
}

.wav-modal h4 {
    color: #C8102E;
    text-align: center;
}

.wav-modal div {
    color: #000;
    text-align: center;
}

.wav-modal__close {
    position: absolute;
    right: 15px;
    top: 15px;
    cursor: pointer;
}

.wav__error {
    color: #C8102E;
    display: none;
}

.wav-modal__description {
    width: 70%;
    margin: auto;
}

@media screen and (max-width: 576px) {
    .wav-modal__description {
        width: 100%;
    }
}

.wav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 999;
}