/**
 * Sivan[sun.sivan@gmail.com]
 * This pen is using Autoprefixer
 */
.form-label fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-label .form-field {
  display: block;
  width: 100%;
  height: 3em;
  padding: 16px 8px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background: rgba(255, 255, 255, 0.97);
  color: #212121;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.form-label fieldset {
  position: relative;
}
.form-label fieldset:first-child .form-field {
  border-radius: 4px 4px 0 0;
}
.form-label fieldset:last-child .form-field {
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.15);
}
.form-label fieldset + fieldset {
  border-top: 1px solid #ddd;
}
.form-label label {
  position: absolute;
  top: 15px;
  left: 8px;
  color: #909090;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.form-css-label .form-field[data-empty="false"], .form-css-label .form-field:valid, .form-css-label .form-field:focus {
  padding: 22px 8px 10px;
}
.form-css-label .form-field:focus {
  outline: 0;
  background: white;
}
.form-css-label .form-field[data-empty="false"] + label, .form-css-label .form-field:valid + label, .form-css-label .form-field:focus + label {
  color: #5856D6;
  font-weight: 700;
  font-size: 12px;
  -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
}

.form-js-label .form-field[data-empty="false"], .form-js-label .form-field:focus {
  padding: 22px 8px 10px;
}
.form-js-label .form-field:focus {
  outline: 0;
  background: white;
}
.form-js-label .form-field[data-empty="false"] + label, .form-js-label .form-field:focus + label {
  color: #5856D6;
  font-weight: 700;
  font-size: 12px;
  -webkit-transform: translate3d(0, -10px, 0);
          transform: translate3d(0, -10px, 0);
}



.section {
  width: 80%;
  min-width: 320px;
  margin: 100px auto;
  text-align: center;
  text-shadow: -1px -1px rgba(0, 0, 0, 0.1);
  color: #fff;
}
.section h2 {
  margin: 0 0 .5em;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25;
}
.section p {
  margin: 0 0 1em;
}
.section form {
  max-width: 320px;
  margin: 0 auto 20px;
}
