/* ─── Login Google (OAuth) ─── */

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0 16px;
    color: var(--text-muted);
    font-size: 13px;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-hint {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
}

.btn-google-signin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid #dadce0;
    border-radius: var(--radius-md, 8px);
    background: #fff;
    color: #3c4043;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
    transition:
        background-color 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease,
        transform 0.15s ease;
}

.btn-google-signin:hover {
    background: #f8f9fa;
    border-color: #d2e3fc;
    color: #3c4043;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.14);
}

.btn-google-signin:focus-visible {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

.btn-google-signin:active {
    transform: translateY(1px);
    box-shadow: 0 1px 1px rgba(60, 64, 67, 0.12);
}

.btn-google-signin__icon {
    display: inline-flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.btn-google-signin__icon svg {
    display: block;
    width: 20px;
    height: 20px;
}

.btn-google-signin__label {
    white-space: nowrap;
}

[data-theme="dark"] .btn-google-signin {
    background: #131314;
    border-color: #8e918f;
    color: #e3e3e3;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

[data-theme="dark"] .btn-google-signin:hover {
    background: #1f1f1f;
    border-color: #a8a8a8;
    color: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}
