/* ============================================================
   social-auth.css — Google/Facebook social login buttons
   Used on: login, register, booking email-step, my-profile
   ============================================================ */

.social-auth-section {
    margin-bottom: 1rem;
}

.social-auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1rem 0;
    color: #6c757d;
    font-size: 0.875rem;
}

.social-auth-divider::before,
.social-auth-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.social-auth-divider span {
    padding: 0 0.75rem;
}

.social-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-auth-form {
    margin: 0;
    padding: 0;
}

.social-auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0.5rem;
    border: 1px solid #dee2e6;
    background: #fff;
    color: #1f2937;
    text-decoration: none;
    transition: all 0.2s ease;
}

.social-auth-btn:hover {
    border-color: #adb5bd;
    background: #f8f9fa;
    color: #1f2937;
}

.social-auth-icon {
    flex-shrink: 0;
}
