/* Google Login styles - Oisipan Bakery */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 1.25rem 0;
    color: #6c757d;
    font-size: 0.875rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #dee2e6;
}

.auth-divider span {
    padding: 0 0.75rem;
}

.google-signin-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

#google-signin-button {
    width: 100%;
    max-width: 320px;
    min-height: 42px;
}

.google-login-unavailable {
    width: 100%;
    padding: 0.7rem 1rem;
    border: 1px dashed #ced4da;
    color: #6c757d;
    text-align: center;
    font-size: 0.9rem;
}

#loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1055;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #f0f0f0;
    border-top: 4px solid #6c4f3d;
    border-radius: 50%;
    animation: google-login-spin 0.9s linear infinite;
}

@keyframes google-login-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
