:root {
	/*Colores*/
	--colorPrimario: rgb(0, 40, 86);
	--colorSecundario: rgb(244, 178, 35);
	--colorTerciario: rgb(158, 161, 162, 1);
	--colorCuarternario: rgb(214, 95, 0, 1);
	--sombraPrimario: rgb(0, 40, 86, 0.1);
	--sombraCuaternario: rgb(214, 95, 0, 0.1);
	--gotham_rounded_book: "gotham_rounded_book";
	--gotham_rounded_bold: "gotham_rounded_bold";
	--lowvetica_demi_bold: "lowvetica_demi_bold"
}

@font-face {
    font-family: 'gotham_rounded_book';
    src: url('fuentes/gotham_rounded_book.otf') format('truetype');
    /* src: url('/vista/css/fuentes/helveticaneue.ttf')  format('truetype'); */
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'lowvetica_demi_bold';
    src: url('fuentes/lowvetica_demi_bold.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: 'gotham_rounded_bold';
    src: url('fuentes/gotham_rounded_bold.otf') 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(--gotham_rounded_book);
}

html, body {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

div {
	display: flex;
}

img {
	object-fit: contain;
}

#contenedor{
	width: 100%;
	height: 100%;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	position: relative;
}


#contenedor_login{
	width: 700px;
	height: auto;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.16), 0px 2px 4px rgba(0, 0, 0, 0.23);
	border-radius: 11px;
}

#div_logo{
	width: 100%;
	height: auto;
	padding: 25px;
	align-items: center;
	justify-content: center;
	background: var(--colorPrimario);
	border-radius: 11px 11px 0px 0px;
}

#logo_image{
	width: 340px;
	height: 160px;
}

#form_login{
	width: 100%;
	height: auto;
	flex-direction: column;
	align-items: center;
	padding: 34px;
}

.div_input{
	width: 100%;
	height: auto;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-top: 30.4px;
}

.img_input_login{
	width: 34px;
	height: 34px;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.3));
}

.input_login{
	width: 340px;
	min-width: 340px;
	height: auto;
	font-size: 22px;
	border: none;
	outline: none;
	margin-left: 34px;
	padding-bottom: 2.5px;
	border-bottom: solid 1px var(--sombraPrimario);
}

.btn{
	display: flex;
	width: 115px;
	min-width: 115px;
	height: 43px;
	min-height: 43px;
	font-size: 18px;
	font-family: var(--gotham_rounded_bold);
	color: #ffffff;
	background: var(--colorPrimario);
	border-radius: 16px;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	box-shadow: 0px 2.5px 2px rgba(0, 0, 0, 0.2);
	margin-top: 34px;
}

.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(--colorCuarternario);
	font-family: var(--helvetica_neue_bold);
	margin-top: 34px;
	text-align: center;
}