body, html{
	width: 100%;
	height: 100%;
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #fafafa;
}
.soft{
	position: fixed;
	z-index: 5;
	width: 100%;
	height: 100%;
	background-color: white;
	display: none;
}
.main-container{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
/*comentario de prueba F Estevez*/
.access-container{
	width: 100%;
	max-width: 750px;
	border-radius: 15px;
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	overflow: hidden;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.50);
	-webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.50);
	-moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.50);
}
.left-contain{
	flex: calc(50% - 100px) 0 0;
	max-width: 50%;
	background: blue;
	padding: 60px 50px 30px 50px;
	background-color: white;
	position: relative;
}
.left-contain h1{
	margin-bottom: 20px;
}
.right-contain{
	flex: calc(50%) 0 0;
	max-width: 50%;
	background: url('../images/login-back-bubbles.png') 30% center;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.right-over{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	background: #2196F3;
	opacity: 0.50;
	position: relative;
}
.right-contain h1{
	display: inline-block;
	color: #efefef;
	font-size: 2.7em;
	text-align: center;
	position: absolute;
	z-index: 2;
}
#usuario-login{
	margin-bottom: 20px;
}
.main-form label{
	margin-bottom: 4px;
	margin-left: 13px;
}
.main-form input{
	background-color: #efefef;
}
.main-form input.error{
	border: 1px solid #FF0041;
}
.main-form button{
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	color: white;
	font-size: 1em;
	background: #2196f3;
	padding: 12px 34px;
	border-radius: 5px;
	border: none;
	margin-bottom: 20px;
	cursor: pointer;
}
.login-form button, .recovery-form button{
	width: calc(50%);
	margin-left: 50%;
}
.recovery-form button{
	margin-top: 40px;
}
.help-recovery-form button{
	width: calc(50%);
	margin-left:25%;
	margin-top: 40px;
}
.recovery-link, .obtener-link{
	display: inline-block;
	margin-top: 10px;
	color: #64B5F6 !important;
	font-size: 0.6875em;
	font-weight: 400;
	text-decoration: underline;
	cursor: pointer;
}
.alert{
	font-size: 0.8em;
	color: #CF273C;
	position: absolute;
	bottom: 10px;
	left: 50px;
}
.alert.ok{
	color: green !important;
}

/*estilos del recuperador de contraseñas*/
.recovery-container, .obtener-container{
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: 3;
	display: none;
}
.recovery-subcontainer{
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.recovery-contain{
	width: calc(80% - 80px);
	max-width: 200px;
	background-color: white;
	padding: 10px 40px;
	-webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.26);
	-moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.26);
	border-radius: 8px;
	border: 1px solid #999;
}
.recovery-alert, .obtener-alert{
	font-size: 0.8em;
	color: #CF273C;
	bottom: 10px;
	left: 50px;	
	margin-top: 5px;
}
#submit-login{
	transition: 0.2s;
}
#submit-login.ok{
	background-color: #4CAF50;
	
}
#submit-login.error{
	background-color: #f44336;
}
#submit-recovery, #submit-obtener{
	display: inline-block;
	font-family: 'Roboto', sans-serif;
	color: white;
	font-size: 1em;
	background: #2196f3;
	padding: 10px 15px;
	border-radius: 5px;
	border: none;
	margin-bottom: 20px;
	margin-top: 10px;
	cursor: pointer;
	width: calc(100% - 30px);
	text-align: center;
}