
.forgot-header {
    text-align: center;
    margin-bottom: 30px;
}

    .forgot-header h3 {
        color: #333;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .forgot-header p {
        color: #777;
        font-size: 13px;
        line-height: 22px;
        margin: 0;
    }

.verify-section,
.password-section {
    display: none;
    margin-top: 25px;
}

.section-title {
    text-align: center;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.verification-text {
    text-align: center;
    color: #777;
    font-size: 13px;
    margin-bottom: 20px;
}

.otp-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .otp-container .otp-input {
        flex: 1;
        text-align: center;
        font-size: 22px;
        font-weight: 600;
        letter-spacing: 8px;
    }

    .otp-container .btn {
        min-width: 110px;
    }


.timer {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
    color: #777;
}

#countdown {
    font-weight: 600;
    color: #e53935;
    margin-left: 5px;
}


.resend-btn {
    margin-top: 5px;
    text-decoration: none !important;
}

    .resend-btn[disabled] {
        opacity: .5;
        cursor: not-allowed;
    }


.password-wrapper {
    position: relative;
}

    .password-wrapper .form-control {
        padding-left: 42px;
        padding-right: 45px;
    }

.password-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 18px;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #777;
    font-size: 20px;
    transition: color .2s;
}

    .toggle-password:hover {
        color: #2196F3;
    }

.back-login {
    margin-top: 25px;
    text-align: center;
}

    .back-login a {
        color: #337ab7;
        text-decoration: none;
        font-weight: 500;
    }

        .back-login a:hover {
            text-decoration: underline;
        }


hr {
    margin-top: 30px;
    margin-bottom: 25px;
}

#btnSendOtp,
#btnResetPassword {
    font-weight: 600;
    letter-spacing: .3px;
}

#btnVerify {
    min-width: 110px;
}

@media (max-width:767px) {

    .otp-container {
        display: block;
    }

        .otp-container .otp-input {
            margin-bottom: 10px;
        }

        .otp-container .btn {
            width: 100%;
        }

    #btnVerify {
        width: 100%;
    }
}

.verify-section,
.password-section {
    animation: fadeIn .25s ease-in-out;
}

@keyframes fadeIn {

    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
