form {
  display: block;
}

label {
  display: block;
  font-size: 1.2em;
  text-align: left;
  color: floralwhite;
}

input[type="email"],
select,
textarea {
  width: 400px;
  padding: 12px;
  border-radius: 4px;
  border: none;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "Patrick Hand", cursive, sans-serif;
  color: whitesmoke;
  background-color: cornflowerblue;
  opacity: 0.4;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}

#message {
  height: 120px;
}

input:focus,
textarea:focus {
  outline: solid antiquewhite;
  opacity: 0.8;
}

.submit {
  color: gold;
  background-color: transparent;
  font-family: "Patrick Hand", cursive, sans-serif;
  font-size: 1em;
  padding: 10px;
  border: 2px solid gold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  opacity: 0.8;
  letter-spacing: 1px;
}

.submit:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: floralwhite;
  border-color: floralwhite;
  transform: translateY(-2px);
}

.submit:active {
  transform: translateY(0);
}
