:root {
	/*Colores*/
	--primario: rgb(20,69,146);
	--secundario: rgb(252,184,24);
    --rojo: rgb(219, 0, 0);
    --verde: rgb(72, 180, 69);
	--sombraPrimario: rgb(20,69,146,0.1);
	--sombraSecundario: rgb(252,184,24,0.5);
	--sombraMsj: rgb(252,184,24,0.052);
    --opensans_bold: "opensans_bold";
    --opensans_light: "opensans_light";
}

@font-face {
    font-family: 'opensans_bold';
    src: url('../fuentes/opensans_bold.ttf')  format('truetype');
    /* src: url('/vista/css/../fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'opensans_light';
    src: url('../fuentes/opensans_light.ttf')  format('truetype');
    /* src: url('/vista/css/../fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: var(--opensans_light);
	-webkit-tap-highlight-color: transparent; /* iOS */
     --moz-outline-style:none; /* Firefox */
     outline: none; /* Todos los demás navegadores */
}

html,body{
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-y: scroll;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    scrollbar-width: none;
    flex-direction: column;
}

img{
    object-fit: contain;
}

div{
    display: flex;
}


#contenedor_login{
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    align-content: baseline;
    flex-direction: column;
}


#form_login{
    width: 100%;
    height: auto;
    flex-direction: column;
    align-items: center;
    padding: 11px;
    justify-content: center;
    display: flex;
}

#logo{
    width: 205px;
    height: 205px;
}

.div_input{
    width: 304px;
    height: min-content;
    min-height: min-content;
    flex-direction: row;
    align-items: center;
    margin-top: 34px;
}

.img_input_login {
    width: 43px;
    min-width: 43px;
    height: 43px;
    min-height: 43px;
    object-fit: contain;
}

.input_login {
    width: 100%;
    height: 34px;
    min-height: 34px;
    margin-left: 16px;
    padding: 7px;
    color: #000000;
    font-size: 25px;
    border: none;
    outline: none;
    background: none;
}
.btn{
    display: flex;
    width: 130px;
    min-width: 130px;
    height: 43px;
    min-height: 43px;
    font-size: 25px;
    color: #ffffff;
    background: var(--primario);
    border-radius: 11px;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 20px;
    margin-top: 61px;
    box-shadow: 0px 2.5px 2px rgba(0, 0, 0, 0.2); /* Establece el efecto de elevación */
}


#p_login{
    font-size: 25px;
    color: #000000;
    margin-top: 34px;
    display: none;   
}