/* Estilos específicos para o botão de autenticação Google */
.google-auth-btn {
    background-color: #DB4437 !important; /* Vermelho oficial do Google */
    border: 1px solid #DB4437 !important;
    color: #FFFFFF !important;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.google-auth-btn:hover {
    background-color: #C23321 !important; /* Vermelho mais escuro para hover */
    border-color: #C23321 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(219, 68, 55, 0.3);
}

.google-auth-btn:active {
    background-color: #A52714 !important; /* Vermelho ainda mais escuro para active */
    border-color: #A52714 !important;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(219, 68, 55, 0.3);
}

.google-auth-btn:focus {
    outline: 2px solid #DB4437;
    outline-offset: 2px;
}

/* Garantir que o botão mantenha a aparência correta em diferentes tamanhos de tela */
@media (max-width: 768px) {
    .google-auth-btn {
        font-size: 14px;
        padding: 14px 20px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .google-auth-btn {
        font-size: 13px;
        padding: 12px 18px;
        height: 40px;
    }
}
