/* Reset Password Page Styles */
.reset-password-steps {
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #666;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step-title {
    font-size: 14px;
    color: #666;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: #FF6B6B;
    color: white;
    transform: scale(1.1);
}

.step.active .step-title {
    color: #FF6B6B;
    font-weight: bold;
}

.step.completed .step-number {
    background-color: #4CAF50;
    color: white;
}

.step-line {
    flex: 1;
    height: 3px;
    background-color: #f0f0f0;
    position: relative;
    z-index: 1;
}

.step-line.active {
    background-color: #FF6B6B;
}

.reset-step {
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}

.form-message {
    margin-top: 20px;
}

.error-message {
    background-color: #ffebee;
    color: #d32f2f;
    padding: 12px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.success-message {
    background-color: #e8f5e9;
    color: #388e3c;
    padding: 12px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.error-message i, .success-message i {
    margin-left: 10px;
    font-size: 18px;
}

.verification-code-wrapper {
    display: flex;
    gap: 10px;
}

#reset-verification-code {
    flex: 1;
    text-align: center;
    letter-spacing: 5px;
    font-size: 18px;
}

.resend-code-btn {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    padding: 0 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resend-code-btn:hover:not(.disabled) {
    background-color: #e0e0e0;
}

.resend-code-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.verification-timer {
    text-align: center;
    margin-top: 10px;
    color: #666;
    font-size: 14px;
}

.auth-links {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.auth-links a {
    color: #FF6B6B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.auth-links a:hover {
    color: #e74c3c;
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive styles */
@media (max-width: 576px) {
    .reset-password-steps {
        padding: 20px 15px;
    }
    
    .step-title {
        font-size: 12px;
    }
    
    .verification-code-wrapper {
        flex-direction: column;
    }
    
    .resend-code-btn {
        width: 100%;
        padding: 10px;
        margin-top: 10px;
    }
}
