/* --- V4: CENTRADO ABSOLUTO (INFALIBLE) --- */

/* 1. Lienzo Base */
body.ic-Login-Body {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    height: 100vh !important;       /* Altura total de la ventana */
    width: 100vw !important;        /* Ancho total de la ventana */
    overflow: hidden !important;    /* Evita barras de desplazamiento */
    position: relative !important;  /* Referencia para el hijo absoluto */
}

/* 2. La Caja Flotante (Wrapper) */
.ic-Login-Wrapper {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important; /* La clave matemática del centrado */
    margin: 0 !important;
    width: auto !important; 
    max-width: 450px !important; /* Evita que se vea gigante en móviles */
}

/* 3. Ajustes Cosméticos */
.ic-Login-Header {
    padding-top: 0 !important;
    margin-bottom: 20px !important;
}

/* 4. Mover el pie de página al fondo para que no estorbe */
.ic-Login-Footer {
    position: absolute !important;
    bottom: 10px !important;
    width: 100% !important;
    text-align: center !important;
}