
body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
}
body:before {
	content: '';
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-image: url(../img/login-bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	-webkit-background-size: cover;
	background-size: cover;
/*	-webkit-filter: blur(2px);*/
/*	-moz-filter: blur(2px);*/
/*	filter: blur(2px);*/
}
.contact-form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400px;
	height: 350px;
	padding: 80px 40px;
    border-radius: 10px;
	background: rgb(7 8 13 / 80%);
}

.avatar {
	position: absolute;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	overflow: hidden;
	top: calc(-50px/2);
	left: 200px;
}
.contact-form h2 {
	margin: 0;
	padding: 0 0 20px;
	color: whitesmoke;
    text-shadow: 10px 10px 10px black;
	text-align: center;
	text-transform: capitalize;
}
.contact-form p {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #fff;
}
.contact-form input {
	width: 100%;
	margin-bottom: 20px;
}
.contact-form input[type=text], .contact-form input[type=password] {
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
}
.contact-form input[type=email]{
	border: none;
	border-bottom: 1px solid #fff;
	background: transparent;
	outline: none;
	height: 40px;
	color: #fff;
	font-size: 16px;
}
.contact-form input[type=submit] {
	height: 30px;
	color: #fff;
	font-size: 15px;
	background: red;
	cursor: pointer;
	border-radius: 25px;
	border: none;
	outline: none;
	margin-top: 15%;
}
/*.contact-form a {*/
/*	color: #fff;*/
/*	font-size: 14px;*/
/*	font-weight: bold;*/
/*	text-decoration: none;*/
/*}*/

input[type=checkbox] {
	width: 20%;
}

