.usersdiv{
	min-height: 100vh;
}
.login-page {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	width: 400px;
	padding: 10% 0 0;
	margin: auto;
}
.form {
	position: relative;
	z-index: 1;
	background: #f8f9fa;
	max-width: 400px;
	margin: 0 auto 200px;
	padding: 40px;
	text-align: center;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1), 0 5px 5px 0 rgba(0, 0, 0, 0.2);
}
.form input {
	outline: 0;
	background: #f8f9fa;
	width: 100%;
	border: 0;
	margin: 0 0 15px;
	padding: 1rem;
	font-size: 0.9rem;
	border-radius: 5px;
}
.form button {
	text-transform: uppercase;
	outline: 0;
	background: #222;
	width: 100%;
	border: 0;
	padding: 15px;
	color: #f8f9fa;
	font-size: 1rem;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
	border-radius: 5px;
	transition: all 1s ease-out;
}
.form button:hover,.form button:active,.form button:focus {
	background: #888;
	transition: all 1s ease-out;
}
.form .message {
	width: 100%;
	margin: 15px 0 0;
	color: #222;
	font-size: 0.8rem;
}
.form .message a {
	color: #222;
	text-decoration: none;
	transition: all 1s ease-out;
}
.form .message a:hover {
	color: #888;
	text-decoration: none;
	transition: all 1s ease-out;
}
.form .register-form {
	display: none;
}
.alertx{
	background-color: red;
	padding: 5px;
	color: #fff5ec;
	border-radius: 5px;
	animation: flash;
	animation-duration: 2s;
}
.alerty{
	background-color: green;
	padding: 5px;
	color: #fff5ec;
	border-radius: 5px;
	animation: flash;
	animation-duration: 2s;
}
.register-form .check-div{
	width: 100%;
	display: flex;
	align-content: center;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.register-form .check-div input{
	width: 5%;
	border:1px solid #222;
	padding: 0;
}
.register-form .check-div label{
	width: 93%;
	text-align: justify;
	font-size: 12px;
	color: #888;
}
.register-form .check-div label a{
	color: #222;
}