
.field {
  display: flex;
  flex-flow: column-reverse;
}
label,
input,
select,
textarea {
  transition: all 200ms ease;
}
input,
select,
textarea {
  font-size: 24px;
  border: 0;
  border-bottom: 1px solid #ccc;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 5px 0;
}
input:focus {
  outline: 0;
  border-color: coral;
}
input:-moz-placeholder-shown + label {
  cursor: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 2.125em) scale(1.5);
}
input:-ms-input-placeholder + label {
  cursor: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 2.125em) scale(1.5);
}
input:placeholder-shown + label {
  cursor: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  transform: translate(0, 2.125em) scale(1.5);
}
input:not(:-moz-placeholder-shown) + label {
  transform: translate(0, 0) scale(1);
  cursor: default;
  color: coral;
}
input:not(:-ms-input-placeholder) + label {
  transform: translate(0, 0) scale(1);
  cursor: default;
  color: coral;
}
input:not(:placeholder-shown) + label,
input:focus + label {
  transform: translate(0, 0) scale(1);
  cursor: default;
  color: coral;
}
label {
  max-width: 66.666%;
  color: #ccc;
}
::-webkit-input-placeholder {
  opacity: 0;
  -webkit-transition: inherit;
  transition: inherit;
}