.sendButton{
width: 60px; 
cursor: pointer;
position:fixed;
bottom:10%;
right:2%;
transition: .2s;
border-radius: 50%;
}
.sendButton:hover{
	border: 2px solid #f3e8b1;
}

.sendForm {
	float:right;
	background: linear-gradient(to bottom, #3776a6, #4894ce);
	color: #f3e8b1;
	border: 2px solid #f3e8b1;
	border-radius: 15px;
	padding: 1em;
	font-family: 'Playfair Display SC', serif;
	position: fixed;
	bottom:2em;
	right: 2em;

	
}
.sendForm p {
	font-size:1.3em;
	text-transform: uppercase;
	margin-bottom: 1em;
	color: #f3e8b1;
	font-family: 'Playfair Display SC', serif;


}
.sendForm input {
	line-height: 1.5em;
	margin-bottom: 1em;
	width: 100%
}
.submit {
	margin-top: 1em;
	cursor: pointer;
	border: 1px solid #cecece;
	background: #fffcef;
	box-shadow: inset 0px 20px 20px #ffffff;
	border-radius: 8px;
	padding: 8px 14px;
	width: 120px;
	color:#002742;
	font-family: 'Playfair Display SC', serif;
	font-weight: bold;
    font-size: inherit;
    text-transform: uppercase;
}
.submit:hover {
	box-shadow: inset 0px -20px 20px #ffffff;
}
.submit:active {
	margin-top: 1px;
	margin-bottom: -1px;
	zoom: 1;
}

.closeCross{
	position: absolute;
    left: 93%;
    top:0%;
    color: white;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.closeCross:hover{
	color: #000;
}