/************************************************/

/* login in */

html body .bannerrgpd {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 99999 !important;
}
.bannerrgpd{
    background: #ffffff;
    border: 1px solid;
    padding: 20px 26px;
    box-shadow: 0 -1px 10px 0 #acabab4d;
    border-radius: 6px;

}

.spinnerlogin, .spinnerlogin:before, .spinnerlogin:after {
    border-radius: 50%;
}

.spinnerlogin {
    color: black;
    font-size: 22px;
    text-indent: -99999px;
    margin: 0px auto;
    position: relative;
    width: 20px;
    height: 20px;
    box-shadow: inset 0 0 0 2px;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
}



.spinnerlogin:before, .spinnerlogin:after {
    position: absolute;
    content: "";
}
.spinnerlogin:before {
    width: 10.4px;
    height: 20.4px;
    background: #efefef;
    border-radius: 20.4px 0 0 20.4px;
    top: -0.2px;
    left: -0.2px;
    -webkit-transform-origin: 10.4px 10.2px;
    transform-origin: 10.4px 10.2px;
    -webkit-animation: loading 2s infinite ease 1.5s;
    animation: loading 2s infinite ease 1.5s;
}

.spinnerlogin:after {
    width: 10.4px;
    height: 10.2px;
    background: #efefef;
    border-radius: 0 10.2px 10.2px 0;
    top: -0.1px;
    left: 10.2px;
    -webkit-transform-origin: 0px 10.2px;
    transform-origin: 0px 10.2px;
    -webkit-animation: loading 2s infinite ease;
    animation: loading 2s infinite ease;
}

.accesscontrol {
    font-size: var(--font-size-login);
}
.accesscontrol h2 {
    font-size: var(--font-size-large);
}

.error-ajax {
   color:red; 
   text-align: center;
}

.error-ajax::before {

    content: '\f00d'; /* Unicode del icono */
    font-family: 'Font Awesome 5 Free'; /* Nombre de la fuente */
    font-weight: 900; /* Depende del icono: 400 para regular, 900 para sólido */
    margin-right: 8px; /* Espacio entre el icono y el texto */
}
.success-ajax::before {

    content: '\f05a'; /* Unicode del icono */
    font-family: 'Font Awesome 5 Free'; /* Nombre de la fuente */
    font-weight: 900; /* Depende del icono: 400 para regular, 900 para sólido */
    margin-right: 8px; /* Espacio entre el icono y el texto */
}

.success-ajax {
   color:green; 
}

/*input,select {
    font-family:Ubuntu !important;
    font-size:17px;
}*/
/** login form */
.accessmcontrol {
    background-color: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.accesscontrol {
    width: 90%; /* Ajusta el ancho al 90% del contenedor */
    max-width: 339px; /* No excederá los 339px */
    min-width: 200px; /* Establece un ancho mínimo para dispositivos más pequeños */
    padding: 20px;
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .13);
    border-radius: 3px;
    margin: 0 auto; /* Centrar en pantallas más grandes */
}


.accesscontrol h2 {
    background-repeat: no-repeat;
    background-size: 60px;
    padding-left:70px;
    padding-top:10px;
    width: 100%;
    height: 60px;
    margin-bottom: 20px;
    display: block;
}

.accesscontrol {
    margin: 0;
}

.accesscontrol p {
    margin-bottom: 24px;
}

.accesscontrol .input {
    width: 92%;
    padding: 10px;
    box-sizing: border-box;
    font-family:inherited;
}

.accesscontrol .button-primary {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.accesscontrol #login-message {
    margin-top: 20px;
    color: red;
}