/*COLOR AZUL: #0001fe*/
/*COLOR NARANJA: #ffb703*/

* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}
html, body {
	width: 100%;
	height: 100%;
	background-color: #0001fe;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: 'Myriad Pro Regular';
	background-image: url("/assets/img/background_opacity.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.vertical-align {
	position: relative;
  	top: 50%;
  	transform: translateY(-50%);
}
.main {
	width: 500px;
	height: 400px;
	border: thin solid white;
	border-radius: 5px;
	background-color: blue;
}
.main_top {
	width: 100%;
	height: 40%;
}
.main_bottom {
	width: 100%;
	height: 60%;
}
.error_text {
	font-size: 15px;
	color: red;
	display: none;
}
.main_bottom_in {
	width: 80%;
	height: auto;
}
.main_bottom_in_labels {
	font-size: 20px;
	margin-bottom: 5px;
	color: white;
}
.main_bottom_in_input {
	-webkit-appearance: none;
	border: none;
	width: 100%;
	height: 30px;
	border-radius: 15px;
	border: thin solid #ffb703;
	background-color: white;
	margin-bottom: 10px;
	padding-left: 20px;
	font-size: 15px;
}
.main_bottom_in_button {
	-webkit-appearance: none;
	border: none;
	width: 100%;
	height: 40px;
	border-radius: 5px;
	background-color: #ffb703;
	color: black;
	font-size: 15px;
	margin-top: 20px;
	cursor: pointer;
}
.main_bottom_in_button:hover {
	background-color: #dfa000;
}

































