*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body{
	font-family: Ariel Rounded MT, Arial, sans-serif;
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
}
#formulario{
	width: 50%;
	height: 400px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.form_des{
	width: 45%;
	height: 100%;
}
.form_des img{
	width: 100%;
	height: 100%;
}
form{
	width: 45%;
	height: 100%;
	background: #44b4e6;
	padding: 10px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

}
form h2{
	text-align: center;
	color: #fff;
	margin-bottom: 30px;
}
form input{
	width: 80%;
	height: 45px;
	border-radius: 20px;
	text-align: center;
	border:none;
	margin-bottom: 10px;
}
form button{
	width: 80%;
	height: 45px;
	background: #286c47;
	border-radius: 20px;
	border:none;
	color: #fff;
}
form button:hover{
	background: #a2edc4;
	cursor: pointer;
}
form p{
	margin-top: 30px;
}
form a{
	color: #263238;
}

/*ALERT*/
#msgLogin{
	width: 80%;
	height: auto;
}
.alert-error{
	width: 100%;
	height: auto;
	padding: 20px 10px;
	background: #ffcdd2;
	border: 1px solid #b71c1c;
	border-radius: 10px;
	margin: 20px 0;
}

.alert-success{
	width: 100%;
	height: auto;
	padding: 20px 10px;
	background: #a5d6a7;
	border: 1px solid #1b5e20;
	border-radius: 10px;
	margin: 20px 0;
}

.alert-warning{
	width: 100%;
	height: auto;
	padding: 20px 10px;
	background: #ffe082;
	border: 1px solid #ffab00;
	border-radius: 10px;
	margin: 20px 0;
}