/* Ê±´úJava - https://NowJava.com */
* {
  box-sizing: border-box;
  transition: .25s ease-in-out;
}

html, body {
  background-color: #bcccd2;
}

#progressive-validation {
  width: 400px;
  margin: 100px auto 0 auto;
}
#progressive-validation input {
  display: block;
  border-radius: 5px;
  border: none;
  background: white;
  font-family: 'Microsoft YaHei','Lantinghei SC','Open Sans',Arial,'Hiragino Sans GB','STHeiti','WenQuanYi Micro Hei','SimSun',sans-serif;
  font-size: 16px;
  line-height: 16px;
  font-weight: 200;
  width: 100%;
  padding: 15px;
  margin: 0 0 10px 0;
  opacity: .2;
  outline: none;
  box-shadow: 0 0 0 1px transparent;
  background-image: url(../images/valid.png);
  background-size: 0px 0px;
  background-position: right 23px;
  background-repeat: no-repeat;
}
#progressive-validation input[type="submit"], #progressive-validation input[type="submit"]:valid {
  background-color: #1a3e4c;
  color: white;
  background-image: none;
}
#progressive-validation input:focus {
  box-shadow: 0 0 0 1px #00aeef;
  opacity: 1 !important;
}
#progressive-validation input:enabled {
  opacity: .8;
}
#progressive-validation input:valid {
  background-image: url(../images/valid.png);
  background-size: 32px 32px;
  background-position: right 10px center;
  background-repeat: no-repeat;
}