/* Botão "Continuar com Google" na página de login (sem estilos inline no PHP) */

.login-google-wrap {
    margin-bottom: 1rem;
}

.btn-google-oauth {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.65rem 1rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #3c4043;
    background: #fff;
    border: 1px solid #dadce0;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    text-decoration: none;
    transition: background 0.15s ease, box-shadow 0.15s ease;
}

.btn-google-oauth--incompleto {
    pointer-events: none;
    opacity: 0.65;
    cursor: not-allowed;
}

.btn-google-oauth:hover {
    background: #f8f9fa;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    color: #3c4043;
    text-decoration: none;
}

.btn-google-oauth:focus-visible {
    outline: 2px solid #4285f4;
    outline-offset: 2px;
}

.btn-google-oauth .google-g-mark {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #4285f4;
}

.login-divider-ou {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    color: #6c757d;
    font-size: 0.8125rem;
}

.login-divider-ou::before,
.login-divider-ou::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #dee2e6;
}
