.center
{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 350px;
  background-color: white;
  border-radius: 5px;
}
.center h1
{
  text-align: center;
  padding-bottom: 20px;
  border-bottom: 1px solid silver;
}
.form 
{
  padding: 15px;
  margin: 0 20px;
}
.textfield, textarea
{
  width: 100%;
  height: 40px;
  font-size: 18px;
  border: 2px solid #34568b;
  border-radius: 5px;
  box-sizing: border-box;
  padding-left: 10px;
  margin: 7px 0;
}
textarea
{
  height: 80px;
}
.btn
{
  width: 18%;
  height: 30px;
  background-color: grey;
  border-radius: 5px;
  font-size: 10px;
  color: white;
  cursor: pointer;
  border: 0; 
  margin: 7px 1px;
}
}


