/* Beatriz Salero — botão "Entrar com Google" (login social) */
.btn-google-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 9px 18px;
    background: #ffffff;
    color: #3c4043;
    border: 1px solid #dadce0;
    border-radius: 6px;
    text-decoration: none !important;
    font-family: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.2px;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(60, 64, 67, 0.08);
    transition: background-color 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn-google-login:hover,
.btn-google-login:focus {
    background: #f8f9fa;
    border-color: #c5c9cc;
    box-shadow: 0 1px 3px rgba(60, 64, 67, 0.16);
    color: #202124;
}

.btn-google-login:active {
    background: #f1f3f4;
    box-shadow: inset 0 1px 2px rgba(60, 64, 67, 0.12);
}

.btn-google-login__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-google-login__icon svg {
    display: block;
}

.btn-google-login__text {
    display: inline-block;
}
