@charset "utf-8";

/* 入力系 */
span.form-input {
  padding: 4px;
  border-radius: 4px;
  display: inline-block;
}
span.form-input.error {
  box-shadow: inset 0px 0px 0px 3px rgba(234, 115, 115, 0.9);
}
.loginForm__input.form-input.error {
  box-shadow: inset 0px 0px 0px 3px rgba(234, 115, 115, 0.9);
}
.form-input.error {
  border-color: rgba(234, 115, 115, 0.9) !important;
}

/* フォント指定 */
.red {
  color: #e01613;
}

.bold {
  font-weight: bold;
}
.underline {
  text-decoration: underline;
}
.bg_gray {
  background-color: #ddd;
}
.bg_white {
  background-color: #fff;
}
