.input__label {
  color: #aaa;
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 16px;
}

.input__field {
  border-radius: 4px;
  width: 100%;
  display: block;
  height: 40px;
  line-height: 40px;
  padding: 0 10px;
  border: 1px solid #dedede;
  box-sizing: border-box;
  font-size: 14px;
  transition: border 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.input__field:focus {
  border-color: #6772e5;
  box-shadow: 0 2px 0 rgba(103, 114, 229, 0.12);
}

.input__error {
  color: red;
  font-size: 12px;
}

.input__label {
  color: #aaa;
  margin-bottom: 4px;
}