body {
	margin: 0;
	padding: 0;
	/* background-image: url('login.jpg'); */
	-webkit-background-size: cover;
	background-size: cover; 
	background-repeat: no-repeat;
	height: 100vh;
}
@media only screen and (max-width: 767px) {
	.wrapper{
		width: 88% !important; 
		top: 40% !important; 
	}
}
.wrapper {
	width: 400px;
	height: auto;
	color: #000;
	top: 50%;
	left: 50%;
	padding: 50px 30px;
	position: absolute;
	transform: translate(-50%,-50%);
	box-sizing: border-box;
	box-shadow: 8px 8px 50px #000;
	background-color: #ffffff;
	text-align: center;
	border-radius: 15px;
}
.wrapper img{
	max-width: 25%;
	margin-bottom: 2em;
}
.wrapper input {
	width: 100%;
	margin-bottom: 20px;

}
.wrapper input[type=email], .wrapper input[type=password] {
	border: none;
	border-bottom: 1px solid #ddd;
	background: transparent;
	outline: none;
	height: 30px;
	font-size: 16px;
	opacity: 1;
	color: #000000;

}
.wrapper input[type=email]:focus,
.wrapper input[type=email]:active{
	background: transparent !important;
}
.wrapper input[type=submit] {
	border: none;
	outline: none;
	height: 40px;
	background: #000000;
	color: #ffffff;
	font-size: 15px;
	font-weight: bold;
}
.wrapper input[type=submit]:hover {
	cursor: pointer;
	background-color: #b1b1b1;
}
input::-webkit-input-placeholder {
  color: #000000;
  font-weight: 600;
}
.wrapper a {
	font-size: 14px;
	text-decoration: none;
	color: #fff;
	opacity: 0.8;
}
.wrapper a:hover {
	color: #fff;
	opacity: 1;
}
 
#overlay-area {
	position: absolute;
	background-color: rgba(0,0,0,0.4);
	z-index: -5;
	height: 100%;
	width: 100%;
	top: 0;
	bottom: 0;
}
