/* Etiquetas generales */
body {
    /* Propiedad de imagen de fondo puesta desde el estilo de la etiqueta por compatibilidad de static django */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}
/* Fin Etiquetas generales */


/* Propias */
.la-login-container {
    position: absolute;
    top: 50%;
    transform: perspective(1px) translateY(-50%);
}

.la-login-box {
    background-color: rgba(10, 10, 10, 0.5);
    border-radius: 2px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
    padding: 3em 0.5em 3em 0.5em;
    color: white;
    height: 350px;
}

.la-absolute-center {
    margin: auto;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
}

.la-absolute-center.la-is-responsive {
    width: 100%;
    height: 350px;
    min-width: 300px;
    max-width: 600px;
    padding: 30px;
}
/* Fin Propias */
