body {
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	font-family: 'Jost', sans-serif;
	background-image: url(/images/login-1.jpg);
	background-size: cover;
	background-repeat: no-repeat;
}

.main {
	width: 350px;
	min-height: 410px;
	border-radius: 12px;
	box-shadow: 0px 16px 65px #000;	
	position: relative;
	background-image: linear-gradient(#eee, #fff);
}

.form-inputs {
	display: grid;
	grid-template-columns: 1fr;
}

@-webkit-keyframes slideIn { 
	0% {
		transform: translateY(-12px);	
		background-color: transparent;	
	}
	100% {
		transform: translateY(0px);
	}
} 
@keyframes slideIn { 
	0% {
		transform: translateY(-12px);	
		background-color: transparent;	
	}
	100% {
		transform: translateY(0px);
	}
}

.animation {
	animation: .25s ease-in 0s slideIn;
}

.title {
	color: #572B7A;
	font-size: 1.8em;
	justify-content: center;
	display: flex;
	margin: 16px;
	font-weight: bold;
}

input {
	height: 20px;
	background: #e0dede;
	justify-content: center;
	display: flex;
	padding: 10px;
	border: none;
	outline: none;
	margin-top: 2px;
	border-radius: 6px;
}

button {
	height: 40px;
	width: 180px;
	margin: 10px auto;
	display: block;
	color: #fff;
	background: #572B7A;
	font-size: 1em;
	font-weight: bold;
	margin-top: 20px;
	border: none;
	border-radius: 5px;
	cursor: pointer;
}

button:hover {
	background: #6d44b8;
}

.login {
	background: #ffffff;
	border-top-left-radius: 50px;
	border-top-right-radius: 50px;
	border-bottom-right-radius: 12px;
	border-bottom-left-radius: 12px;
	position: absolute;
	width: 100%;
	text-align: center;	
	padding-bottom: 8px;
}

.message {
	text-align: center;	
	font-size: 1em;
	padding-bottom: 8px;
	display: block;
}

#title {
	margin: 10px;
	font-size: 2em;
}

#img-content {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	padding: 8px;
}

.field {
	position: relative;
	margin: 10px auto;
	text-align: left;
}

.footer {
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	color: white;
	text-align: center;
	padding: 4px;
	text-shadow: 12px 12px 40px #000000;
	background: rgb(87, 43, 122, 0.9);
	box-shadow: 0px 6px 36px #000;
}