html, body{
	margin: 0px;
	padding: 0px;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	font-weight: 300;
}
*{
	box-sizing: border-box;
}

#wrapper-auth{
	background-color: #d2f1f0;
	position: relative;
	min-width: 100%;
	min-height: 100vh;
	background: #ECE9E6;
	background: -webkit-linear-gradient(to right, #FFFFFF, #ECE9E6);
	background: linear-gradient(to right, #FFFFFF, #ECE9E6);
	display: flex;
	justify-content: center;
	align-items: center;	
}


#wrapper-auth > form{
	all: unset;
	min-width: 300px;
	box-sizing: border-box;
	border-radius: 10px;
	#transform: translate(-50%, -50%);
	overflow: hidden;
	margin: auto;
}

#wrapper-auth > form h1{
	color: #45509a;
	font-weight: 300;
	margin-block: 0rem;
}
#wrapper-auth > form p{
	color: #45509a;
	font-weight: 300;
	margin: 0.5rem 0rem 2rem 0;
}

#wrapper-auth form > div{
	background-color: #fff;
	padding: 2rem 2rem 1rem 2rem;
}

#wrapper-auth form input{
	font-size: 1rem;
	outline: none;
	padding: 1rem;
	width: 100%;
	margin-bottom: 1rem;
	border-radius: 5px;
	border: 1px solid #edefef;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	font-weight: 300;
}

#wrapper-auth form input:-webkit-autofill,
#wrapper-auth form input:-moz-autofill {
	font-family: Roboto, sans-serif !important;
	font-size: 16px !important;
	font-weight: 300 !important;
}


input::placeholder, textarea::placeholder {
	color: #a6a6a6;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	font-weight: 300;
	opacity: 1;
}


#wrapper-auth form button{
	all: unset;
	display: block;
	width: 100%;
	text-align: center;
	padding: 1.5rem 0;
	outline: none;
	border: none;
	background-color: #45509a;
	color: #fff;
	cursor: pointer;
	font-size: 1rem;
	margin: 0;
	font-family: Roboto, sans-serif;
	font-size: 16px;
	font-weight: 300;
	box-shadow: none;
}

#wrapper-auth form button:hover{
	background-color: #3a4485;
}


#forgot{
	display: block;
	color: #1c7571;
	cursor: pointer;
	margin-bottom: 0.5rem;
	text-align: right;
}
#forgot:hover{
	text-decoration: underline;
}


#wrapper-auth .error{
	display: inline-block;
	background-color: #fde8e4;
	top: 0.6rem;
	color: #f74b27;
	padding: 0.5rem 1rem 0.5rem 2.5rem;
	border-radius: 0.3rem;
	right: 90px;
	/*text-align: right;*/
	font-weight: 500;
	font-size: 0.8rem;
	background-image: url(../imgs/warning.png);
	background-size: 2rem;
	background-position: 0 50%;
	background-repeat: no-repeat;
	margin-bottom: 1rem;
}

#wrapper-auth .success{
	display: inline-block;
	background-color: #daf4f0;
	top: 0.6rem;
	color: #0ab39c;
	padding: 0.5rem 1rem 0.5rem 2.5rem;
	border-radius: 0.3rem;
	right: 90px;
	/*text-align: right;*/
	font-weight: 500;
	font-size: 0.8rem;
	background-image: url(../imgs/success.png);
	background-size: 2rem;
	background-position: 0 50%;
	background-repeat: no-repeat;
	margin-bottom: 1rem;
}

#wrapper-auth .error:empty{
	display: none;
}

#wrapper-auth .success:empty{
	display: none;
}