/*COLOR AZUL: #0001fe*/
/*COLOR NARANJA: #ffb703*/

html, body {
	width: 100%;
	height: 100%;
	margin: 0px;
	background-color: #e7e7e7;
	font-family: 'Myriad Pro Regular';
	display: flex;
	flex-direction: column;
}
.vertical-align {
	position: relative;
  	top: 50%;
  	transform: translateY(-50%);
}
.header {
	width: 100%;
	height: 100px;
	background-color: #0001fe;
}
.header_botom_line {
	width: 100%;
	height: 5px;
	background-color: #ff9e00;
}
.logo {
	width: auto;
	height: 50%;
	margin-left: 20px;
	float: left;
}
.logo_line {
	width: 1px;
	height: 60%;
	background-color: white;
	float: left;
	margin-left: 20px;
	margin-right: 20px;
}
.checkout_title {
	margin: 0px;
	font-size: 25px;
	color: white;
	float: left;
	cursor: pointer;
}
.main {
	width: 100%;
	flex: auto;
	display: flex;
	align-items: center;
	justify-content: center;
}
.main_in {
	width: 1300px;
	height: 500px;
}
.main_in_left {
	width: 50%;
	height: 100%;
	float: left;
	box-shadow: 2px 0px 0px 0px #ffb703;
	display: flex;
	flex-direction: column;
}
.login_div {
	width: 100%;
	height: 100%;
	border-radius: 5px;
	display: flex;
	flex-direction: column;
}
.login_div_header {
	width: 100%;
	height: 150px;
}
.login_icon {
	width: 80px;
	height: auto;
	float: left;
	margin-left: 30px;
}
.login_line {
	width: 2px;
	height: 80px;
	background-color: #ffb703;
	float: left;
	margin-left: 30px;
}
.login_header_text {
	margin: 0px;
	font-size: 25px;
	font-family: 'Myriad Pro Bold';
	color: black;
	float: left;
	margin-left: 30px;
}
.login_div_main {
	width: 100%;
	flex: 1;
}
.login_div_main_in {
	width: 90%;
	height: auto;
}
.login_div_main_in_error {
	margin: 0px;
	font-size: 15px;
	color: red;
	margin-bottom: 5px;
	display: none;
	font-family: 'Myriad Pro Bold';
}
.login_input {
	-webkit-appearance: none;
	width: 100%;
	height: 40px;
	color: black;
	font-size: 16px;
	border: 0px;
	border: 2px solid #00008e;
	border-radius: 8px;
	text-align: left;
	padding-left: 20px;
	background-color: white;
	outline: none;
	margin-bottom: 10px;
}
.login_input:focus {
	border: 3px solid #ffb703;
	color: black;
}
.login_btn {
	width: 100%;
	height: 50px;
	font-size: 15px;
	background-color: #ffb703;
	border: none;
	-webkit-appearance: none;
	border-radius: 5px;
	margin-top: 10px;
	cursor: pointer;
}
.login_noregis {
	margin: 0px;
	font-size: 12px;
	color: black;
	margin-top: 10px;
	float: left;
}
.login_noregis2 {
	margin: 0px;
	font-size: 12px;
	color: black;
	font-family: 'Myriad Pro Bold';
	cursor: pointer;
	margin-left: 5px;
}
.login_olvido {
	margin: 0px;
	font-size: 12px;
	color: #000063;
	margin-top: 60px;
	cursor: pointer;
}
.invitado_btn {
	-webkit-appearance: none;
	border: none;
	width: 250px;
	height: 80px;
	font-size: 15px;
	border-radius: 5px;
	background-color: #ffb703;
	color: black;
	cursor: pointer;
}
.main_in_right {
	width: 50%;
	height: 100%;
	float: left;
}
.footer {
	width: 100%;
	height: 200px;
	background-color: #0001fe;
}
.footer_text {
	margin: 0px;
	color: white;
	font-size: 20px;
}
@media only screen and (max-height: 1100px) {
	html, body {
		display: block;
		flex-direction: none;
	}
	.main {
		height: 700px;
		display: block;
		align-items: none;
		justify-content: none;
		padding-top: 40px;
		padding-bottom: 50px;
	}
}
@media only screen and (max-width: 860px) {
	.main_in {
		width: 90%;
		height: auto;
	}
	.main_in_left {
		width: 100%;
		height: 500px;
		float: none;
		box-shadow: 0px 2px 0px 0px #ffb703;
	}
	.main_in_right {
		width: 100%;
		height: 200px;
		float: left;
	}
	
	.footer_text {
		font-size: 15px;
	}
}
@media only screen and (max-width: 780px) {
}
@media only screen and (max-width: 590px) {
	.footer_text {
		font-size: 12px;
	}
	.footer {
		height: 200px;
	}
	.logo {
		height: 40%;
	}
}
@media only screen and (max-width: 559px) {
	.header {
		width: 100%;
		height: 70px;
		background-color: #0001fe;
	}
}




















