/* Forgot password extras */

.forgot-email-highlight {
    color: #F57C00;
    font-weight: 700;
}

.forgot-divider {
    height: 1px;
    background: #EEEEEE;
    margin: 22px 0 16px;
}

.forgot-back-site {
    text-align: center;
    margin: 0;
}

.forgot-back-site a {
    color: #9E9E9E;
    font-size: 0.86rem;
    font-weight: 500;
    text-decoration: none;
}

.forgot-back-site a:hover {
    color: #F57C00;
}

.auth-form__btn--outline {
    background: #ffffff;
    color: #F57C00;
    border: 1.5px solid #F57C00;
    box-shadow: none;
}

.auth-form__btn--outline:hover {
    background: rgba(245, 124, 0, 0.06);
    color: #E65100;
    border-color: #E65100;
}

.otp-boxes {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.otp-box {
    width: 56px;
    height: 56px;
    border: 1.5px solid #E0E0E0;
    border-radius: 12px;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1A237E;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.otp-box:focus {
    outline: none;
    border-color: #F57C00;
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.14);
}

.otp-box.is-invalid {
    border-color: #FF4D4F;
}

@media (max-width: 575.98px) {
    .otp-box {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
}
