.u-sp {
  display: none;
}

.login {
  padding: 80px 20px;
  background: #FFFFFF;
}

.login__box {
  max-width: 700px;
  margin: 0 auto;
  padding: 70px 80px 60px;
  border: 1px solid #002241;
  border-radius: 28px;
  background: #FFFFFF;
}

.login__title {
  text-align: center;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.08em;
  color: #002241;
  margin-bottom: 30px;
}

.login__line {
  width: 100%;
  height: 1px;
  background: #002241;
  margin-bottom: 70px;
}

.login__group {
  margin-bottom: 55px;
}

.login__label {
  display: block;
  font-size: 17px;
  font-weight: normal;
  color: #002241;
  margin-bottom: 18px;
  letter-spacing: 0.05em;
}

.login__input {
  width: 95%;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #8e8e8e;
  border-radius: 10px;
  background: #ffffff;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.login__input:focus {
  border-color: #002241;
}

.login__forgot {
  text-align: right;
  margin-top: -18px;
  margin-bottom: 70px;
}

.login__forgot a {
  color: #002241;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
}

.login__forgot a:hover {
  opacity: 0.7;
}

.login__btn-wrap {
  margin-top: 35px;
  text-align: center;
}

.login__btn {
  display: inline-block;
  width: 180px;
  height: 48px;
  line-height: 48px;
  border: none;
  border-radius: 999px;
  background: #002b57;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.login__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.login__register-wrap {
  margin-top: 35px;
  text-align: center;
}

.login__register {
  display: inline-block;
  width: 180px;
  height: 48px;
  line-height: 48px;
  border: 1px solid #002b57;
  border-radius: 999px;
  background: #ffffff;
  color: #002b57 !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.login__register:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.login__mail-message {
  text-align: center;
}

.login__error {
  text-align: center;
  color: red;
}

/* =========================
SP
========================= */

@media screen and (max-width: 768px) {

  .u-sp {
    display: block;
  }

  .login {
    padding: 30px 15px;
  }

  .login__box {
    padding: 45px 24px 40px;
    border-radius: 20px;
  }

  .login__title {
    font-size: 16px;
    margin-bottom: 22px;
  }

  .login__line {
    margin-bottom: 45px;
  }

  .login__group {
    margin-bottom: 35px;
  }

  .login__label {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .login__input {
    height: 54px;
    font-size: 15px;
    border-radius: 8px;
  }

  .login__forgot {
	  margin: 0 auto;
	  text-align: center;
    margin-bottom: 45px;
  }

  .login__forgot a {
    font-size: 15px;
  }

  .login__btn {
    width: 170px;
    height: 54px;
    line-height: 54px;
    font-size: 15px;
  }

}