/* Botón de Login - Estilo consistente con la aplicación */

.btn-login {
    background: transparent;
    color: white !important;
    border: 2px solid white;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-login:hover {
    background: white;
    color: #1976d2 !important;
    transform: translateY(-2px);
}
