@charset "UTF-8";
/* CSS Document */
/*---------------------------------

  ログイン画面

---------------------------------*/
section.block {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 95vh;
}

section .wrap {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.08);
    margin: 20px auto;
    padding: 40px;
    width: 90%;
    max-width: 400px;
}

section .title img {
  display: block;
  width: 90px;
  margin: 0 auto 20px;
}

section .title h1 {
  font-size: 20px;
  line-height: 135%;
  text-align: center;
}

section form p {
	font-size: 14px;
	font-weight: 700;
}

section .form_group {
  margin-bottom: 25px;
}

section .form_group p {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 5px;
}

section input[type=text], input[type=password] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-color: #eee;
    background-image: none;
    border: solid 1px #ddd;
    border-radius: 3px;
    color: inherit;
    font-family: inherit;
    font-size: 1em;
    width: 100%;
    height: 32px;
    padding: 0.4em 0.8em;
}

section .login_keep {
  display: flex;
  margin-bottom: 20px;
}

section .login_keep input {
  transform: scale(1.5);
  margin-right: 10px;
}

section .login_button {
  margin-bottom: 10px;
}

section .login_button button {
  background: #0071bc;
  border-radius: 2.8px;
  color: #fff;
  cursor: pointer;
  display: block;
  font-size: 100%;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 16px;
  width: 100%;
}

section .forgot {
  display: flex;
  justify-content: center;
}

section .forgot img {
  width: 16px;
  margin-right: 5px;
}

section .forgot p {
  font-size: 14px;
}

section .forgot p a {
  color: #999999;
  text-decoration: none;
}