@charset "UTF-8";
/* 
====================================================================================================
■ form common
---------------------------------------------------------------------------------------------------- */
input[type="text"], input[type="password"], button, textarea {
  margin: 0;
  padding: 3px;
  border: 1px solid #cdd2de;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  outline: none;
  background: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 100%;
}

button {
  padding: 0;
  border: none;
}

button::-moz-focus-inner {
  padding: 0;
  border-width: 0;
}

input[type="text"], input[type="password"], textarea {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="text"]:focus, input[type="password"]:focus, textarea:focus {
  border-color: #202e91;
  -moz-box-shadow: 0 0 5px 0 rgba(32, 46, 145, 0.3);
  -webkit-box-shadow: 0 0 5px 0 rgba(32, 46, 145, 0.3);
  box-shadow: 0 0 5px 0 rgba(32, 46, 145, 0.3);
}

input[type="radio"], input[type="checkbox"] {
  margin: 0 1px 0 2px;
  vertical-align: middle;
}

input:disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=60);
  opacity: 0.6;
}

textarea {
  resize: vertical;
  -moz-transition: height 0.2s linear 0s;
  -o-transition: height 0.2s linear 0s;
  -webkit-transition: height 0.2s linear;
  -webkit-transition-delay: 0s;
  transition: height 0.2s linear 0s;
}

select {
  margin: 0;
  padding: 3px;
  border: 1px solid #888;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  outline: none;
  background: #fff;
}
select:focus {
  border-color: #202e91;
  -moz-box-shadow: 0 0 5px 0 rgba(32, 46, 145, 0.3);
  -webkit-box-shadow: 0 0 5px 0 rgba(32, 46, 145, 0.3);
  box-shadow: 0 0 5px 0 rgba(32, 46, 145, 0.3);
}

form .form_icon {
  margin: 0 3px;
  vertical-align: middle;
}
form .ime_off {
  ime-mode: disabled;
}
form .ime_on {
  ime-mode: active;
}
form .w_full {
  width: 100%;
}
form .w_half {
  width: 50%;
}
form .form_foot {
  margin-top: 16px;
  text-align: center;
}

.form_opt {
  color: #999;
  font-size: 12px;
  font-size: 85.71429%;
}
