body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	width: 100vw;
	height: 100vh;
	background-image: url('../img/spa_background.jpg');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}
.contact-form {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 400vw;
	height: 350vh;
	padding: 80px 40px;
    border-radius: 10px;
	background: rgba(221, 177, 242, 0.459);
}

.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: rgb(26, 4, 4);
    text-shadow: 10px 10px 10px black;
	text-align: center;
	text-transform: capitalize;
}
.contact-form p {
	margin: 0;
	padding: 0;
	font-weight: bold;
	color: #535050;
}
.contact-form input {
	width: 100%;
	margin-bottom: 20px;
}
.contact-form input[type=text], .contact-form input[type=password] {
	border: none;
	border-bottom: 1px solid #170b0b;
	background: transparent;
	outline: none;
	height: 40px;
	color: #170505;
	font-size: 16px;
}
.contact-form input[type=email]{
	border: none;
	border-bottom: 1px solid #170b0b;
	background: transparent;
	outline: none;
	height: 40px;
	color: 170505;
	font-size: 16px;
}
.contact-form input[type=submit] {
	height: 30px;
	color: #fff;
	font-size: 15px;
	background: rgb(145, 52, 52);
	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%;
}

.btn{
	margin-left: 100px;
	width: 180px;
	height: 30px;
	background-color:  rgba(145, 52, 52, 0.596);
	color: #170b0b;
	border: none;
	border-radius: 15px;
	font-weight: 600;
	cursor: pointer;
}

