.auth-divider {
    align-items: center;
    color: #8090aa;
    display: flex;
    font-size: 12px;
    font-weight: 700;
    gap: 12px;
    letter-spacing: .08em;
    margin: 22px 0;
    text-transform: uppercase;
}

.auth-divider::before,
.auth-divider::after {
    background: #d9e1ef;
    content: "";
    flex: 1;
    height: 1px;
}

.google-auth-button {
    align-items: center;
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    color: #172033;
    display: flex;
    font-size: 15px;
    font-weight: 700;
    gap: 12px;
    justify-content: center;
    min-height: 50px;
    padding: 12px 18px;
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
    width: 100%;
}

.google-auth-button:hover,
.google-auth-button:focus-visible {
    border-color: #7da8ff;
    box-shadow: 0 8px 24px rgba(37, 99, 235, .12);
    transform: translateY(-1px);
}

.google-auth-icon {
    display: inline-grid;
    font-family: Arial, sans-serif;
    font-size: 21px;
    font-weight: 800;
    place-items: center;
    width: 24px;
}

.google-auth-icon span:nth-child(1) {
    background: conic-gradient(from -45deg, #4285f4 0 25%, #34a853 0 45%, #fbbc05 0 68%, #ea4335 0 82%, #4285f4 0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.google-auth-note { color: #718096; font-size: 12px; margin: 10px 0 0; text-align: center; }
