:root {
	/*Colores*/
	--colorPrimario: rgb(208,54,50);
	--sombraPrimario: rgb(208,54,50, 0.1);
	--roboto: "roboto";
	--roboto_bold: "roboto_bold";
}

@font-face {
    font-family: 'roboto';
    src: url('fuentes/roboto.ttf') format('truetype');
    /* src: url('/vista/css/fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'roboto_bold';
    src: url('fuentes/roboto_bold.ttf') format('truetype');
    /* src: url('/vista/css/fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	font-family: var(--roboto);
}

html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

div {
	display: flex;
}

img {
	object-fit: contain;
}

#contenedor{
	width: 100%;
	height: 100%;
	flex-direction: row;
	position: relative;
	align-items: center;
	justify-content: center;
}

#contenedor_login{
	width: 70%;
	height: auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 34px;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16), 0px 2px 4px rgba(0, 0, 0, 0.23);
	border-radius: 16px;
}

#logo_image{
	width: 340px;
	height: auto;
}

#form_login{
	width: 100%;
	height: auto;
	flex-direction: column;
	align-items: center;
	margin-top: 25px;
}

.div_input{
	width: 100%;
	height: auto;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 30.4px;
}

.img_input_login{
	width: 25px;
	height: 25px;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

.input_login{
	width: 250px;
	min-width: 250px;
	height: auto;
	font-size: 22px;
	border: none;
	outline: none;
	margin-left: 16px;
	padding-bottom: 2.5px;
	border-bottom: solid 1px var(--sombraPrimario);
}

.btn{
	width: 160px;
	height: auto;
	align-items: center;
	justify-content: center;
	padding-bottom: 3.4px;
	margin-top: 16px;
	font-size: 22px;
	font-family: var(--roboto_bold);
	color: var(--colorPrimario);
	padding: 11px;
	border: solid 1px var(--colorPrimario);
	border-radius: 22px;
	cursor: pointer;
	transition: all 0.7s;
	opacity: 0.7;
}

.btn:hover{
	opacity: 1;
}

#p_login{
	opacity: 0;
	width: 100%;
	height: 34px;
	min-height: 34px;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: var(--colorPrimario);
	font-family: var(--roboto_bold);
	margin-top: 34px;
	text-align: center;
}