@import url('https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap');

/*
VALIDADO PARA NUEVO SERVIDOR DEMS
*/

/*Atributos generales para la pagina*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Source Sans Pro', sans-serif;
    color: #00B5E2;
}


html {
  position: relative;
  min-height: 100%;
}


/*Header y su contenido*/

header {
    background-color: #003B5C ;
    color: #00B5E2;
    min-height: 10vh;
}

.modalHeadFoot {
    background-color: #003B5C ;
    color: #00B5E2;
}


::placeholder {
    color: white;
    opacity: .6; /* Firefox */
}
              
/*Imagen Cover y contenido*/
.imagenCover{
    background-image: url(../Imagenes/Portada0.jpg);
    background-size: 110% 110%;
    background-repeat: no-repeat;
    animation: moveportada 25s infinite linear alternate;
    margin: auto;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 80vh;
}

.inicio{
    margin: auto;
    position: relative;
    color: white;
    text-align: center;
}
    
@keyframes moveportada{
    from{
        background-position:  left;
    }
    to{
        background-position:  right;
    }
}    

.selectPrepa{
    color: white;
    border: none;
    border-bottom: 3px solid #00B5E2;
    background: transparent ;
    margin-top: 5%;
    font-weight: bold;
    text-align: center;
    outline: none;
    cursor: pointer;
}

.inicio input[type="text"],.inicio input[type="password"]{
    color: white;
    border: none;
    border-bottom: 3px solid #00B5E2;
    background: rgba(0, 59, 92,.4) ;
    margin-top: 5%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    outline: none;
}

.inicio input[type="submit"]{
    background: rgba(0, 59, 92,.9);
    margin-top: 5%;
    color: #00B5E2;
    font-weight: bold;
    cursor: pointer;
    transition: 500ms;
    border: none;
}

.inicio input[type="submit"]:hover{
    background: rgba(0, 181, 226,.9) ;
    color: #003B5C ;
}

select {
    text-align: center;
    text-align-last: center;
}
    
option {
    text-align: left;
}

/*footer*/
footer{
    background-color: #003B5C ;
    color: #00B5E2;
    min-height: 10vh;
}
