@font-face {
    font-family: 'Rubik';
    src: url('../fonts/Rubik-VariableFont_wght.ttf');
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Rubik'!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;
}
.divisor_producto{
    margin-top: 7px;
    border-top: 1px solid #ddd;
    width: 100%;
    max-width: 100%;
    min-height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.divisor_producto p{
    font-size: 14px;
}
.divisor_producto a{
    display: flex;
    align-items: center;
    justify-content: center;
}
.divisor_producto img{
    width: 23px;
    margin-left: 5px;
}
.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;
}
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: 46px;
    width: 100%;
    border: none;
    border-radius: 3px;
    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_ingresar{
    padding: 9px 30px;
    font-size: 15px;
    outline: none;
    border-radius: 4px;
    border: none;
    background-color: #1a73e8;
    color: #fff;
    width: 100%;
    cursor: pointer;
    margin-bottom: 5px;
    transition: 0.2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 5px solid rgba(0, 0, 0, 0.100);
}
.boton_ingresar:hover{
    background-color: #3288f8;
    color: #fff;
}