/*  ESTOS ESTILOS ESTABAN ESCRITOS DENTRO DE index.html HASTA EL 27/08/2026.
 *
 *  Salen de alli por el mismo motivo que salieron los dos programas: la proteccion contra codigo
 *  inyectado solo puede cerrarse si todo lo que se aplica llega en su propio fichero.
 *
 *  QUE PINTAN: la pantalla de carga -el circulo girando, el titulo y el "Cargando..."- que se ve
 *  mientras el navegador se descarga la aplicacion, y la pantalla de no autorizado.
 *
 *  LA ETIQUETA QUE LO CARGA VA EN EL <head>, y eso importa: asi el navegador lo tiene antes de
 *  pintar nada y la pantalla de carga no aparece un instante sin estilos.
 *
 *  NO SE HA CAMBIADO NI UNA REGLA. Es el mismo texto, movido.
 */

.splash-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    height: 100vh;
    font-family: "Segoe UI",Roboto,"Helvetica Neue","-apple-system",BlinkMacSystemFont,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
    font-size: .88rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

    .splash-screen .spinner-border {
        border: .2em solid;
        border-color: #5f368d #bfbfbf #bfbfbf;
        width: 120px;
        height: 120px;
    }

.splash-screen-caption {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
}

.splash-screen-text {
    color: #a1a1a1;
    margin-top: .5rem;
}

.unauthorized {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    font-size: 15rem;
}
