.field {
  display: flex;
  flex-flow: column-reverse;
  margin-bottom: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.typeimage {
  height: 257px;
}
label,
input,
textarea {
  transition: all 0.2s;
  touch-action: manipulation;
}
input,
textarea {
  font-size: 1.2em;
  border: 0;
  border-bottom: 1px solid #ccc;
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0;
  cursor: text;
}
input:focus,
textarea:focus {
  outline: 0;
  border-bottom: 1px solid #666;
}
select {
  font-size: 1.2em;
  font-family: inherit;
}
label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
input:placeholder-shown + label,
textarea:placeholder-shown + label {
  color: #cccccc;
  cursor: text;
  max-width: 66.66%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 1.5rem) scale(1.2);
}
::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}
input:focus::-webkit-input-placeholder,
textarea:focus::-webkit-input-placeholder {
  opacity: 1;
}
/**
* When the element is focused, remove the label transform.
* Also, do this when the placeholder is _not_ shown, i.e. when
* there's something in the input at all.
*/
input:not(:placeholder-shown) + label,
textarea:not(:placeholder-shown) + label,
input:focus + label,
textarea:focus + label {
  transform: translate(0, 0) scale(1);
  cursor: pointer;
  color: #666666;
}
.buttons {
  text-align: right;
  margin-bottom: 2em;
}
button {
  background-color: #3b666e;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  font-family: 'Titillium Web', sans-serif;
  font-size: 1em;
  padding: 5px 15px;
}
@media screen and (max-width: 598px) {
  .left {
    float: none;
    margin-right: 0;
  }
}
@media screen and (max-width: 414px) {
  .typeimage {
    width: 100%;
    height: auto;
  }
  select {
    width: 100%;
  }
}
/*# sourceMappingURL=form.css.map */