/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/
.col-12.d-block.d-sm-none.d-md-block.text-center {
    display: none !important;
}
/* 1. Cambiar el color de fondo y borde del botÃ³n "Entrar" */
.btn-primary[name="login_submit"] {
    /* Ejemplo: Color de fondo morado (reemplaza con tu cÃ³digo de color) */
    background-color: #673AB7 !important;
    /* Ejemplo: Color de borde morado */
    border-color: #673AB7 !important;
}

/* 2. Cambiar el color de fondo y borde cuando el cursor pasa por encima (efecto hover) */
.btn-primary[name="login_submit"]:hover {
    /* Ejemplo: Un tono ligeramente mas oscuro para el efecto hover */
    background-color: #512DA8 !important;
    border-color: #512DA8 !important;
}
.ls-side-panel {
    background-image: url('../../files/mi-fondo-login.jpg') !important; 
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: #632067 !important; /* Color de respaldo */
}

/* Oculta los elementos que est¨¢n dibujando el gr¨¢fico (por si acaso) */
.ls-side-panel::before,
.ls-side-panel::after {
    display: none !important;
}
/* Ocultar el mensaje: "Los siguientes formularios est¨¢n disponibles:" */
.survey-list-heading {
    display: none !important;
}

/* Ocultar el mensaje de contacto: "Por favor, contacte con..." */
.survey-contact {
    display: none !important;
}
/* 1. Ocultar la sugerencia "Elija una respuesta" o "Check any that apply" */
.ls-question-help, .questionhelp {
    display: none !important;
}

/* 2. Ocultar la opci¨®n "Sin respuesta" o "No mostrado" */
/* NOTA: Solo ¨²salo si est¨¢s seguro. Es mejor desactivarlo desde la configuraci¨®n global */
.no-answer {
    display: none !important;
}