#form {
  font-family: "Merriweather";
width:80%;
background-color:var(--light);
color:var(--dark);
margin:30px auto;
padding:20px;
border:double var(--white) 2px;
border-radius:10px;
font-size:12px;
text-align:center;
text-align-last:center;
box-shadow:5px 5px 0 var(--bg);
}

fieldset {
border:none;
}

input[type=submit] {
    font-family: "Raleway";
margin:10px;
padding:10px;
width:50%;
background-color:var(--accent);
border-radius:10px;
  cursor: crosshair;
  color:var(--white);
  font-weight:bold;
  border:var(--white) double 5px;
}

input[type=submit]:hover {
  background-color:var(--dark);
  cursor:crosshair;

}

input[type=text], input[type=email], textarea {
    font-family: "Merriweather";
  background-color:var(--white);
  border:none;
  padding:10px;
  width:90%;
  max-width:350px;
  margin:10px;
  font-size:12px;
}
