html
{ height: 100%;}

*


body
{ font: normal .40em 'century gothic';
  background: #FFF;
margin: 2% 10% 0 10%;}




 .swap {

	position: relative;
	display: inline-block;
   padding-left: 0px;

}

.swap .img-front {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.swap:hover .img-front {
	display: inline-block;
   padding-left: 0px;
}




p
{
line-height:1.4;
	color: #333;

}

img
{ border: -1;}


* {
  padding: 0;
  margin: 0;

}
body {
  font-family: "Montserrat";
}
section {
 
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.container {
  width: 90%;
  max-width: 500px;
  margin: 0 auto;

  background-color: "#73faf6";

  border-radius: 8px;
  margin-bottom: 2px;
}
.form-group {
  width: 100%;
  margin-top: 20px;
  font-size: 20px;
}
.form-group input,
.form-group textarea {
  width: 100%;
 
  font-size: 18px;
  
  margin-top: 5px;
}

textarea {
  resize: vertical;
}
button[type="submit"] {
  width: 100%;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 24px;
  border-radius: 1px;
  font-family: "Montserrat";
  color: rgb(0, 0, 0);
  text-align: center;
  cursor: pointer;
  margin-top: 1px;
background-color: rgb(142, 214, 206);
}
button[type="submit"]:hover {
  background-color: rgb(158, 237, 228);
}
#status {
  width: 90%;
  max-width: 500px;
  text-align: center;
  padding: 10px;
  margin: 0 auto;
  border-radius: 8px;
}
#status.success {
  background-color: rgb(211, 250, 153);
  animation: status 4s ease forwards;
}
#status.error {
  background-color: rgb(250, 129, 92);
  color: white;
  animation: status 4s ease forwards;
}
@keyframes status {
  0% {
    opacity: 1;
    pointer-events: all;
  }
  90% {
    opacity: 1;
    pointer-events: all;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

