*:after,
*:before {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Material Design Form Inputs */
.form__wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 100%;
  vertical-align: top;
  margin-bottom: 5px;
}

.form__wrapper input[type="date"] {
  height: 40px;
}

.form__wrapper--submit {
  padding: 1.6rem 0;
}

.form__input {
  display: block;
  position: relative;
  margin-top: 0.5em;
  padding-top: 15px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #FFF0F5;
  color: #333333;
  line-height: 20px;
  font-size: 16px;
  font-family: "Prompt", sans-serif;
  outline: 0;
  border: none;
  border-radius: 0px;
  border-bottom: solid 1px #ddd;
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(96%, rgba(255, 255, 255, 0)), color-stop(4%, #F2F2F2));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #F2F2F2 4%);
  background-position: -400px 0;
  background-size: 400px 100%;
  background-repeat: no-repeat;
  /**
	 * Remove default box-shadow for required pseudo classes 
	 */
  /**
	 *  When input contain a class of .error 
	 */
}

.form__input:required {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form__input.error {
  -webkit-transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: all 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(96%, rgba(255, 255, 255, 0)), color-stop(4%, #f44336));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 96%, #f44336 4%);
  background-position: 0 0;
  background-size: 400px 100%;
  background-repeat: no-repeat;
}

.form__input:focus {
  background-position: 0 0;
  color: #333333;
  border-bottom: 2px solid #ED165F;
  margin-top: 15px;
  -webkit-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1), -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}

/* Form Label */
.form__label {
  position: absolute;
  font-family: "Prompt", sans-serif;
  font-size: 16px;
  bottom: 0;
  left: 0;
  padding: 0;
  margin-top: 10px;
  padding-top: 16px;
  margin-bottom: 1rem;
  width: 100%;
  height: calc(100% - 1em);
  text-align: left;
  pointer-events: none;
  color: #333333;
}

/* Form Label Content */
.form__label-content {
  position: absolute;
  -webkit-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1), -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}

.form__label-tel {
  position: absolute;
  font-family: "Prompt", sans-serif;
  font-size: 44px;
  bottom: 0;
  padding: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: calc(100% - 1em);
  pointer-events: none;
  color: #333333;
}

.form__label-content-tel {
  position: absolute;
  -webkit-transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
  transition: transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1), -webkit-transform 0.3s cubic-bezier(0.64, 0.09, 0.08, 1);
}

/**
 * 1. When input is focused move the label to top
 * 2. when the input field has a value move the label to top
 */
.form__input:focus ~ .form__label {
  color: #ED165F;
}

.form__input:focus ~ .form__label .form__label-content,
.form--filled .form__label-content {
  font-size: 14px;
  padding-top: 0;
  -webkit-transform: translate3d(10%, -85%, 0);
  transform: translate3d(10%, -85%, 0);
}

.form__label__date {
  position: absolute;
  font-size: 16px;
  bottom: 0;
  left: 0;
  padding: 0;
  margin-top: 10px;
  padding-top: 16px;
  margin-bottom: 1rem;
  width: 100%;
  height: calc(100% - 1em);
  text-align: left;
  pointer-events: none;
  color: #333333;
}

/**
 * Error Styles
 * .error class generated by jquery.validate.min.js plugin
 */
.error {
  font-size: 16px;
  color: #f44336;
  display: block;
  background-color: #FFF0F5;
}

.error label {
  font-size: 14px;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  background-color: #FFF0F5;
  -webkit-box-shadow: 0 0 0px 1000px #F2F2F2 inset !important;
}
/*# sourceMappingURL=test.css.map */