/* EDIVIC Google Auth Buttons - no backend/database schema change */
.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0;
    color: #94a3b8;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}
.google-auth-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #d9dee8;
    border-radius: 10px;
    background: #ffffff;
    color: #232F3E;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    font-family: inherit;
}
.google-auth-btn:hover {
    transform: translateY(-2px);
    border-color: #FEBD69;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}
.google-auth-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.google-auth-btn i {
    font-size: 1.05rem;
    color: #4285f4;
}
.google-auth-note {
    margin-top: 10px;
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.45;
    text-align: center;
}
.google-callback-body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #232F3E, #111827);
    font-family: 'Poppins', Arial, sans-serif;
    color: #232F3E;
    padding: 24px;
    box-sizing: border-box;
}
.google-callback-card {
    width: min(420px, 100%);
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}
.google-callback-card .callback-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: rgba(254, 189, 105, 0.14);
    color: #232F3E;
    font-size: 1.8rem;
}
.google-callback-card h1 {
    margin: 0 0 10px;
    font-size: 1.45rem;
}
.google-callback-card p {
    margin: 0;
    color: #64748b;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .auth-divider { margin: 14px 0; }
    .google-auth-btn { padding: 11px 12px; font-size: 0.92rem; }
}
