/* Google OAuth buttons - clean, centered and theme-aware */
.google-auth-wrap {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 18px auto 0;
}

.google-auth-divider {
    width: 100%;
    max-width: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 14px;
    color: #7b8494;
    font-size: 14px;
    line-height: 1;
}

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

.google-auth-button {
    width: 100%;
    max-width: 420px;
    min-height: 52px;
    margin: 0 auto;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-sizing: border-box;
    border: 1px solid #d9dee7;
    border-radius: 12px;
    background: #fff;
    color: #202124 !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    box-shadow: 0 3px 12px rgba(20, 32, 56, .07);
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background-color .18s ease;
}

.google-auth-button:hover,
.google-auth-button:focus {
    color: #202124 !important;
    text-decoration: none !important;
    border-color: var(--primary-color, #4285f4);
    background: #fff;
    box-shadow: 0 7px 22px rgba(20, 32, 56, .12), 0 0 0 3px rgba(66, 133, 244, .10);
    transform: translateY(-1px);
}

.google-auth-button:active {
    transform: translateY(0);
    box-shadow: 0 3px 10px rgba(20, 32, 56, .09);
}

.google-auth-button .google-auth-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    display: block;
}

.google-auth-button .google-auth-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    text-align: center;
}

@media (max-width: 575.98px) {
    .google-auth-wrap {
        margin-top: 16px;
    }

    .google-auth-divider {
        max-width: 100%;
        margin-bottom: 12px;
    }

    .google-auth-button {
        max-width: 100%;
        min-height: 50px;
        border-radius: 10px;
        font-size: 15px;
        padding-left: 16px;
        padding-right: 16px;
    }
}
