@font-face {
    font-family: 'Open sans';
    src: url('../fonts/OpenSans-Variable.ttf');
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Open sans'!important;
}body{
    background-color: #f2f5fc;
    margin: auto;
    height: 100%;
}
body input{
    outline: none;
}
main{
    height: calc(100vh - 75px);
    position: relative;
}
.contenedor_login{
    margin: auto;
    width: 390px;
    max-height: 420px;
    background-color: #fff;  
    border-radius: 3px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 30px;
    position: absolute;
    top: -90px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    border: 1px solid #d5d7da;
    border-top: 3px solid #1a73e8;
}


.imagen_logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    min-height: 90px;
    border-radius: 50%;
    margin: 0px 0px 10px 0px;
}
.imagen_logo img{
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}
.titulo{
    font-size: 20px;
    margin-bottom: 5px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    color: #202020;
}
.subtitulo{
    font-size: 15px;
    color: rgba(0, 0, 0, 0.500);
    margin-bottom: 15px;
    font-weight: 400;
    text-transform: inherit;
}
.Titulo_Crear{
    font-size: 15px;
    text-align: center;
    cursor: pointer;
    color: #646464; 
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease-in;
}
.Titulo_Crear span{
    color: #1a73e8;
    font-size: 15px;
    cursor: pointer;
}
.Titulo_Crear:hover{
    opacity: 80%; 
}
.Recuperar_Login{
    font-size: 14px;
    color: #636363;
    cursor: pointer;
}
label{
    display: block;
    position: relative;
    margin: 25px 0px;
    height: max-content;
}
#formulario{
    width: 100%;
    margin-bottom: 7px;
}
.contenedor_input{
    position: relative;
    margin-bottom: 17px;
}
input,select{   
    height: 47px;
    width: 100%;
    border: none;
    border-radius: 5px;
    color: black;  
    font-size: 16px;
    transition: 0.1s ease-in;
    padding: 0px 13px;
    padding-left: 35px;
    outline: none;
    border: 1px solid #d5d7da;
    transition: all .1s ease-out
}
select{
    cursor: pointer;
}
input:focus,select:focus{
    border: 1px solid #1a73e8;
}   
.icono_input{
    position: absolute;
    color: #8b8885;
    font-size: 20px;
    bottom: 14px;
    left: 10px;
    max-width: 20px;
}
span{
    padding: 0px 6px;
    color: #bebebe;
    font-size: 17px;
    cursor: text;
    text-align: left;   
}
.Boton_Registrar,.boton_ingresar{
    padding: 11px 30px;
    font-size: 15px;
    outline: none;
    border-radius: 4px;  
    border: none; 
    background-color: #1a73e8;
    color: #fff;
    width: 100%;
    cursor: pointer;
    margin-bottom: 15px;
    transition: 0.2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
}
.boton_ingresar ion-icon,
.Boton_Registrar ion-icon{
    font-size: 16px;
    margin-left: 5px;
    padding-top: 1px;
}
.boton_ingresar:hover,.Boton_Registrar:hover{
    background-color: #3288f8;
    color: #fff;
}