/* Forgot Password Styles */
.recovery-step {
    animation: fadeIn 0.3s ease-in;
}

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

.recovery-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recovery-option {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 1.5rem;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
    text-decoration: none;
    color: inherit;
}

.recovery-option:hover {
    border-color: #3b82f6;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.whatsapp-option:hover {
    border-color: #25d366;
    background: #f0fff4;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.option-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.option-content {
    flex: 1;
}

.option-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
}

.option-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.4;
}

.option-arrow {
    font-size: 1.5rem;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.recovery-option:hover .option-arrow {
    transform: translateX(4px);
    color: #3b82f6;
}

.whatsapp-option:hover .option-arrow {
    color: #25d366;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 0.5rem 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    padding: 0 1rem;
    color: #9ca3af;
    font-size: 0.875rem;
    font-weight: 500;
}

.recovery-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-secondary {
    background: #f3f4f6;
    color: #374151;
    border: 1px solid #d1d5db;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
}

.btn-secondary:hover {
    background: #e5e7eb;
    border-color: #9ca3af;
}

.success-step {
    text-align: center;
}

.success-content {
    padding: 2rem 0;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-content h2 {
    color: #059669;
    margin-bottom: 1rem;
}

.success-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.back-to-login {
    display: inline-flex;
    align-items: center;
    color: #6b7280;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.back-to-login:hover {
    color: #3b82f6;
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .recovery-option {
        padding: 1rem;
    }
    
    .option-icon {
        font-size: 1.5rem;
        margin-right: 0.75rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
}