.welcome-box { 
    margin-top: 8%;
    background: white; 
    padding: 3rem; 
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(30, 29, 29);
}

.imagen-cuadrada {
    width: 250px;           /* Ancho deseado */
    height: 250px;          /* Mismo valor para hacer cuadrado */
    object-fit: cover;      /* Recorta para llenar el cuadrado */
    border-radius: 5px;     /* Opcional: esquinas redondeadas */
    display: block;
    margin: 0 auto;         /* Centrar si es necesario */
}

.login-box { 
    margin-top: 1%;
    background: white; 
    padding: 2rem; 
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(30, 29, 29);
}

.dropdown.menu>li.is-active>a {
    background: #1779ba;
    color: #fff
}
li.es-activo-submenu>a {
    background: #1779ba;
    color: #fff
}

.ocultar{
    display: none !important;
}

.loader {
    width: 68px;
    height: 68px;
    border: 5px solid #0ead00;
    border-bottom-color: #221abe;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    background-color: rgba(44, 41, 41, 0.091);
    position: relative;
    top: 50%;
    left:  50%;
    z-index: 100;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 

.margen{
    margin-top: 2.5%;
}