input,
textarea {
  border: 0;
  background: #f5f5f5;
  border-radius: 0.25rem;
  padding: 0.75rem 0.5rem;
  width: calc(100% - 1rem);
  max-width: calc(100% - 1rem);
  margin: 0;
  outline: 0;
  cursor: text;
}
input:focus,
textarea:focus {
  background: #fff;
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.2);
}

label {
  padding-bottom: 1rem;
  display: block;
}
label h4 {
  margin: 0 0 0.5rem;
  font-weight: 500;
  font-size: 1rem;
}
button {
  border: 0;
  background: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 3px 1px rgba(0, 0, 0, 0.2);
  position: relative;
  cursor: pointer;
  outline: none;
}
button:hover,
button:focus {
  background: #eee;
  box-shadow: 0 3px 4px 1px rgba(0, 0, 0, 0.3);
  top: -1px;
}
button:active {
  top: 1px;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.4);
}
