

body{
    font-family: 'Roboto', 'Open Sans', sans-serif !important;
    color: #ffffff;
}


/******************************************************************************/
/******************************************************************************/
/* 1.- video */
#jumbo_video{
    position: relative;
    overflow: hidden;
    background-color:black;
    height: 500px;
}
    
#jumbo_video video {
    position: absolute;
    z-index: 1;
    top: 0;
    width:100%;
    height:100%;
    /*  object-fit is not supported on IE  */
    object-fit: cover;
}
    
#jumbo_video .container-fluid {
    z-index: 2;
    position: relative;
}
        
@media (max-width: 767px) {
    #jumbo_video{
        height: 400px;
    }
}
    
@media (min-width: 768px) and (max-width: 991px) {
    #jumbo_video{
        height: 400px;
    }
}
    
.contenedor-login {
    height: 100%;
    min-height: 100%;
    padding-top: 20px;
    background-color: rgba(37, 35, 47, 0.8) !important;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    backdrop-filter: blur(25px);
    border-right: 1px solid rgba(37, 35, 47, 0.4);;
}
    
.container-fluid{
    height:100%;
}

.row_100{
    height:100%;
}


/******************************************************************************/
/******************************************************************************/
/* 2.- imagen admision */

#admision_logo_escuela{
    margin: 0 auto;
    width: 100%;
}

#admision_logo_ano{
    margin: 0 auto;
    margin-bottom: 30px;
    width: 60%;
}



#admision_logo_movil{
    margin: 0 auto;
    width: 250px;
    margin-bottom: 20px;
}
                        
@media (min-width: 992px) and (max-width: 1199px) {
    #admision_logo{
        width: 200px;
    }
}
                        
@media (min-width: 768px) and (max-width: 991px) {
    #admision_logo{
        width: 180px;
    }
}

@media (max-height: 750px) {
    #admision_logo{
        max-width: 200px;
        margin-bottom: 15px;
    }
    
    #login_imagen_acreditacion{
        max-width: 200px;
    }
}


@media (max-width: 767px) {
    #admision_logo_movil{
        width: 210px;
    }
    
    .contenedor-login{
        padding-top: 10px;
    }
    
    #login_imagen_acreditacion{
        width: 200px;
    }
}


/******************************************************************************/
/******************************************************************************/
/* 3.- login */

#formulario_login{
    margin-top: 50px;
    margin-bottom: 50px;
}

#olvido_contrasena{
    text-align: right !important;
    color: #fff !important;
}

#olvido_contrasena a:link, a:visited, a:active {
    color: #fff !important;
    text-decoration: underline !important;
}

/******************************************************************************/
/******************************************************************************/
/* 4.- botones */

#boton_inscripcion{
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #f0ba31;
    color: #25232f !important;
    border: 2px solid #f0ba31;
}

#boton_inscripcion:hover {
    background-color: #e9ab0f;
}

#button_login{
    background-color: #f0ba31;
    color: #25232f !important;
    border: 1px solid #f0ba31;
}

#button_login:hover {
    background-color: #e9ab0f;
}

#boton_conocer_mas{
    color: #fff !important;
    background-color: transparent;
    border: 1px solid #fff;
    transition-duration: 0.4s;
}

#boton_conocer_mas:hover{
    background-color: #bb2e36;
    border: 1px solid #bb2e36;
}

.alert_login{
    padding: 5px !important;
    text-align: left;
}

/******************************************************************************/
/******************************************************************************/
/* 5.- otros */

#logo_acreditacion{
    position: absolute;
    bottom: 10px;
    width: 60%;
    left: 0; 
    right: 0; 
    margin-left: auto; 
    margin-right: auto; 
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(37, 35, 47, 0.4);
    z-index: 1;
}

.overlay:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url('../../images/home/dot-pattern.png') 0 0;
    opacity: .2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(240, 186, 49, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(240, 186, 49, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(240, 186, 49, 0);
    }
}

.pulse {
    animation: pulse 2s infinite;
}