input::-ms-clear {
  display: none;
}
input[type="text"],
input[type="email"],
input[type="password"]{
  border: solid 1px #999;
  background-color: #fff;
  height: 24px;
  font-size: 14px;
  padding: 3px;
  line-height: 18px;
}
input[type="submit"]{
  height: 26px;
  border: solid 2px #bf354a;
  border-radius: 5px;
  background: linear-gradient(to bottom,#e5516e,#e5516e 50%,#bf354a 50%, #bf354a);
  color: #fff;
  font-size: 14px;
}
input[type="reset"]{
  height: 26px;
  border: solid 2px #474747;
  border-radius: 5px;
  background: linear-gradient(to bottom,#777777,#777777 50%,#474747 50%, #474747);
  color: #fff;
  font-size: 14px;
}
input:disabled{
  background-color: #ddd;
}
input:disabled.bgwhite{
  background-color: #fff;
}
input[readonly]{
  background-color: #ddd;
}
input.year{
  width: 50px;
}
input.month, input.day{
  width: 34px;
  margin-left: -1px;
}
textarea{
  border: solid 1px #999;
  background-color: #fff;
  resize: none;
}

label.check_box{
  cursor: pointer;
}
label.check_box > input[type="checkbox"]{
  display: none;
}
label.check_box > span{
  padding-left: 22px;
  position: relative;
}
label.check_box > span:before{
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border: solid 1px #999;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
label.check_box > input[type="checkbox"]:checked ~ span:after{
  content: "";
  display: block;
  width: 8px;
  height: 6px;
  border-bottom: solid 2px #446285;
  border-left: solid 2px #446285;
  position: absolute;
  left: 6.5px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transform: rotate(-45deg)
}

label.radio_button{
  cursor: pointer;
}
label.radio_button > input[type="radio"]{
  display: none;
}
label.radio_button > span{
  padding-left: 22px;
  position: relative;
}
label.radio_button > span:before{
  content: "";
  display: block;
  width: 13px;
  height: 13px;
  border-radius: 6.5px;
  border: solid 1px #999;
  background-color: #fff;
  position: absolute;
  left: 4px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
label.radio_button > input[type="radio"]:checked ~ span:before{
  border: solid 1px #446285;
  background-color: #fff;
}
label.radio_button > input[type="radio"]:checked ~ span:after{
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 6.5px;
  background-color: #628ab2;
  position: absolute;
  left: 5.5px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}