body {
	background-color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
	margin: 0;
}

.login-container {
	background-color: #fff;
	padding: 40px;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
	max-width: 400px;
	width: 90%;
	text-align: center;
	transition: box-shadow 0.3s ease;
}

.login-container:hover {
	 box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}

.login-container .logo {
	width: 100px;
	height: 90px;
	margin-bottom: 20px;
	border-radius: 50%;
	object-fit: cover;
	display: block;
	margin-left: auto;
	margin-right: auto;
	overflow: hidden;
	transform: rotate(-12deg) translateY(-10px)
}



.alert {
	text-align: left;
	padding: 0 10px 0 10px;
	margin-bottom: 1rem;
	border: 1px solid transparent;
	border-radius: .25rem;
}

.input-group-text {
	cursor: pointer;
}

.form-group label {
	font-weight: bold;
	text-align: left;
	display: block;
	margin-bottom: 0.5rem;
}

.form-control {
	background-color: #fff;
	border: 1px solid #eeeef8;
	height: 42px;
	padding: 6px 15px;
	font-size: 14px;
	color: #222222;
	border-radius: 5px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

@media ( max-width : 576px) {
	.login-container {
		padding: 30px;
	}
}