/* Forgot Password Styles */

.forgot-container {
    max-width: 480px;
}

.forgot-step {
    text-align: center;
}

.forgot-icon {
    font-size: 3.5rem;
    margin-bottom: 16px;
    line-height: 1;
}

.forgot-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.forgot-desc strong {
    color: #ffd700;
}

/* Step Indicator */
.step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    padding: 12px 0;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 70px;
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    font-weight: 900;
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.step span {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.step.active .step-dot {
    border-color: #ffd700;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.25);
}

.step.active span {
    color: #ffd700;
}

.step.completed .step-dot {
    border-color: #51cf66;
    color: #51cf66;
    background: rgba(81, 207, 102, 0.1);
}

.step.completed span {
    color: #51cf66;
}

.step-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 22px;
}

.step-line.completed {
    background: #51cf66;
}

/* Forgot Form */
.forgot-form {
    text-align: left;
}

.forgot-form .form-group {
    margin-bottom: 20px;
}

.forgot-form .sign-in-btn {
    width: 100%;
}

/* OTP Input */
.otp-input-wrapper {
    display: flex;
    justify-content: center;
}

.otp-input {
    text-align: center;
    font-size: 1.8rem !important;
    font-family: 'Orbitron', monospace !important;
    letter-spacing: 8px;
    padding: 14px 16px !important;
    font-weight: 900;
    color: #ffd700 !important;
    max-width: 220px;
}

.otp-input::placeholder {
    letter-spacing: 8px;
    color: rgba(255, 215, 0, 0.2) !important;
}

/* Password Requirements */
.password-requirements {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
    text-align: left;
}

.password-requirements .req-title {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
}

.password-requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.password-requirements li {
    font-size: 0.8rem;
    padding: 2px 0 2px 20px;
    position: relative;
    transition: color 0.2s ease;
    font-family: 'Rajdhani', sans-serif;
}

.password-requirements li::before {
    position: absolute;
    left: 0;
    font-size: 0.82rem;
}

.password-requirements li.req-unmet {
    color: rgba(255, 255, 255, 0.35);
}

.password-requirements li.req-unmet::before {
    content: "○";
    color: rgba(255, 255, 255, 0.25);
}

.password-requirements li.req-met {
    color: #51cf66;
}

.password-requirements li.req-met::before {
    content: "●";
    color: #51cf66;
}

/* Resend OTP */
.resend-otp {
    text-align: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.resend-otp p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.resend-form {
    display: inline;
}

.resend-btn {
    background: none;
    border: none;
    color: #ffd700;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.resend-btn:hover {
    opacity: 0.8;
}

/* Back Link */
.forgot-back {
    margin-top: 24px;
    text-align: center;
}

.forgot-back a {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-back a:hover {
    color: #ffd700;
}

/* Responsive */
@media (max-width: 768px) {
    .forgot-container {
        max-width: 100%;
        padding: 30px 24px;
    }

    .step-indicator {
        gap: 0;
    }

    .step {
        min-width: 60px;
    }

    .step-line {
        width: 30px;
    }
}
