.forgot-password-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    padding: 30px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    max-width: 500px;
    margin: 0 auto;
}

.forgot-password-header {
    text-align: center;
    margin-bottom: 25px;
}

.forgot-password-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
}

.forgot-password-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-color);
}

.form-control {
    border-radius: 6px;
    padding: 10px 12px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(26, 115, 232, 0.2);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0d62c9;
    border-color: #0d62c9;
    transform: translateY(-2px);
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.alert {
    border-radius: 6px;
    padding: 12px 16px;
    margin-bottom: 20px;
}

.alert-danger {
    background-color: #fde8e8;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-success {
    background-color: #e8f5e8;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-info {
    background-color: #e8f4fd;
    border-color: #b6d4fe;
    color: #084298;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    color: var(--light-text);
}

.login-link a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.login-link a:hover {
    text-decoration: underline;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
}

.password-strength {
    margin-top: 8px;
}

.password-strength-bar {
    height: 5px;
    background-color: #e0e0e0;
    border-radius: 3px;
    margin-bottom: 5px;
    overflow: hidden;
}

.password-strength-fill {
    height: 100%;
    width: 0;
    transition: width 0.3s;
}

.password-strength-text {
    font-size: 0.8rem;
    color: var(--light-text);
}

.password-strength.weak .password-strength-fill {
    background-color: #e74c3c;
    width: 33%;
}

.password-strength.medium .password-strength-fill {
    background-color: #f39c12;
    width: 66%;
}

.password-strength.strong .password-strength-fill {
    background-color: #2ecc71;
    width: 100%;
}

.success-icon {
    font-size: 4rem;
    color: #34a853;
    margin-bottom: 20px;
}

.loading-spinner {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 576px) {
    .forgot-password-card {
        padding: 20px;
    }
}