/* Google sign-in buttons (customer + admin) */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    color: #6b7280;
    font-size: 0.8125rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.oauth-signin-block[hidden] {
    display: none !important;
}

.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    width: 100%;
    padding: 0.6875rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    background: #fff;
    color: #374151;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-google:hover,
.btn-google:focus {
    background: #f9fafb;
    border-color: #9ca3af;
    outline: none;
}

.btn-google:focus-visible {
    box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.2);
}

.btn-google svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-google-oauth--prompt {
    border-color: var(--brand-primary);
    box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.35);
    animation: hm-google-prompt-pulse 1.25s ease-in-out 3;
}

@keyframes hm-google-prompt-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(var(--brand-primary-rgb), 0.35);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(var(--brand-primary-rgb), 0.2);
    }
}
