@charset "UTF-8";
/* Simple Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* body */
body {
  background-color: #92b0d4;
  background: radial-gradient(#92b0d4 25%, #2460a8 100%);
  color: #5e5e5e;
  font: 400 87.5%/1.5em -apple-system, blinkMacSystemFont, Meiryo, sans-serif;
}
.form-wrapper {
  background-color: #fafafa;
  margin: 2em auto;
  padding: 0 1.5em;
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
  max-width: 370px;
}
h1 {
  text-align: center;
  font-weight: 1.1em;
  padding: 0.6em 0;
  color: #2460a8;
}
.subtitle {
  display: inline-block;
  color: #aaa;
  margin: 0.75em 1em 0 1em;
}
form {
  padding: 0 1.5em;
}
.form-item {
  margin-top: 0.75em;
  margin-bottom: 0.75em;
  width: 100%;
}
.form-item input {
  background-color: #f1f1f1;
  border: none;
  border-bottom: 2px solid #e9e9e9;
  color: #666;
  font-family: 'Open Sans', sans-serif;
  font-size: 1em;
  height: 50px;
  transition: border-color 0.3s;
  width: 100%;
  padding: 0 10px;
}
.form-item input:focus {
  border-bottom: 2px solid #92b0d4;
  outline: none;
}
.form-item span.err {
  display: inline-block;
  color: #d72d10;
  font-size: 1.1em;
  width: 100%;
  padding: 10px 10px;
}
.logo {
  text-align: center;
}
.logo img {
  width: 100%;
}
.button-panel {
  margin: 2em 0 0;
  width: 100%;
}
button {
  background-color: #2460a8;
  border: 2px solid #2460a8;
  color: #fff;
  cursor: pointer;
  height: 50px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1.2em;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
button:hover {
  background-color: #f2545b;
  border-color: #ed1b24;
}
.form-footer {
  font-size: 0.75em;
  padding: 2em 0;
  text-align: center;
}
.form-footer a {
  color: #8c8c8c;
  text-decoration: none;
  transition: border-color 0.3s;
}
.form-footer a:hover {
  border-bottom: 1px dotted #8c8c8c;
}
