body {
  font-family: sans-serif;
}

.field {
  position: relative;
  max-width: 300px;
}

.field__label {
  color: #919293;
  box-sizing: border-box;
  display: block;
  font-size: 16px;
  font-weight: normal;
  line-height: 0.8;
  opacity: 0.85;
  overflow: hidden;
  padding: .5em 1em;
  pointer-events: none;
  position: absolute;
  text-overflow: ellipsis;
  top: 5px;
  text-align: center;
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  white-space: nowrap;
  width: 100%;
  z-index: 1;
}
.field--not-empty .field__label {
  opacity: 0;
  -webkit-transform: none;
          transform: none;
  font-size: .8125em;
}

.field__input {
/*  background-color: #f5f5f5; */
  border: 1px solid #ccc;
  color: #333;
/*  font-size: 1.3125em; */
  text-align: center;
/*  padding: .4761904762em; */
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
  border-radius: 6px;
}
.field__input:focus {
  /* inset | offset-x | offset-y | blur-radius | spread-radius | color */
/*  box-shadow: inset 0 0 10px 0 rgba(85, 85, 85, 0.1); */
/*  outline: 0; */
border-color: #A69F9F;
outline: 0;
-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(206, 202, 202, .6);
box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(206, 202, 202, .6)
}
.field--not-empty .field__input {

}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #919293;
  text-align: center;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #919293;
  text-align: center;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #919293;
  text-align: center;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #919293;
  text-align: center;
}
