/* おまじない */
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
:root {
  --nav-height: 10vh;
  --nav-background: #ccc;
}

header {
  /* background: #eeb2ee; */
  padding: 30px 30px;
  position: fixed;
  justify-content: space-between;
  width: 100%;
  height: 80px;
}

.login {
  margin-top: 100px;
}
@media screen and (max-width: 980px) {
  .login {
    margin-top: 400px;
  }
}

.title {
  text-align: center;
  font-size: 2.3rem;
  font-family: "ヒラギノ角ゴ ProN W3", HiraKakuProN-W3, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica,
    Arial, sans-serif;
}

@media screen and (max-width: 980px) {
  .title {
    text-align: center;
    font-size: 3.5rem;
  }
}

.img {
  text-align: center;
  margin: 10px;
}

ul {
  text-align: center;
  list-style: none;
  margin-top: 20px;
}

.login_input {
  height: 40px;
  width: 300px;
  padding-left: 10px;
  border-radius: 3px;
  border: 0.1rem solid #eeb2ee;
  margin: 15px;
  background-color: #fae2fa;
}

@media screen and (max-width: 980px) {
  .login_input {
    height: 60px;
    width: 300px;
  }
}

.button_input {
  margin-top: 30px;
  height: 50px;
  width: 200px;
  background-color: #eeb2ee;
  color: white;
  border: 0.1rem solid #eeb2ee;
}

.button_input:focus {
  border: 0.1rem solid #eeb2ee;
  color: #eeb2ee;
  background-color: white;
}
