@charset "UTF-8";
.loginBoxWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  height: 100%;
}


#loginBox {
  width: 580px;
  position: relative;
}

@media only screen and (max-width: 787px) {
  #loginBox {
    width: 100%;
  }
}
#loginBox h2 {
  background-color: #35AFC2;
  color: #FFF;
  font-size: 22px;
  height: 50px;
  line-height: 50px;
  padding-left: 25px;
  border-radius: 8px 8px 0 0;
}
#loginBox #logo {
  position: absolute;
  top: -100px;
  width: 100%;
}
#loginBox #logo img {
  display: block;
  margin: 0 auto;
  height: 80px;
}

#editForm {
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: 2px 0 2px rgba(0, 0, 0, 0.3);
  text-align: center;
}

#loginInput {
  padding: 10px 30px;
}
#loginInput p.message {
  margin: 10px 0;
  color: #343c47;
}
#loginInput .alert {
  padding: 8px 15px 8px 0;
  background: url(../img/common/alert_ico_error.gif) no-repeat scroll 10px 50% #f8e1e0;
  border: 1px solid #cc8e8d;
  border-radius: 5px;
  margin-bottom: 15px;
}
#loginInput .alert p {
  margin-left: 37px;
}
#loginInput .label {
  margin: 20px 0;
  position: relative;
  padding: 0;
  font-size: 100%;
}
#loginInput .label label {
  padding: 6px 20px 6px 0;
  color: #343c47;
  font-size: 18px;
}
#loginInput .label label:after {
  content: "：";
}
#loginInput .label input {
  width: 358px;
}
@media only screen and (max-width: 787px) {
  #loginInput .label input {
    width: 100%;
  }
}
#loginInput .loginCheck {
  text-align: right;
  padding: 0 42px;
  margin-top: 20px;
}

#loginBtn {
  background: none repeat scroll 0 0 #eeeeee;
  border-radius: 0 0 8px 8px;
  border-top: 1px solid #e2e2e2;
  padding: 20px 0;
  text-align: center;
}

#sectionInfo {
  font-size: 13px;
  padding-top: 10px;
  padding-left: 10px;
  position: relative;
}


#container {
  padding: 0;
}

input[type="text"],
input[type="password"] {
  border: 1px solid #B0B0B0;
  padding: 8px;
}

#btnLogin {
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  display: inline-block;
  width: 320px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  text-align: center;
  background-color: #FEB606;
  border: none;
  font-size: 130%;
}
@media only screen and (max-width: 787px) {
  #btnLogin {
    width: 70%;
  }
}

#loginBox #logo img {
  width: 46%;
}
#loginBox #logo {
  top: -80px;
}
@media only screen and (max-width: 787px) {
  #editForm {
    margin: 0 10px;
  }
}
#loginInput .alert-success{
  padding: 8px 15px 8px 0;
  border-radius: 5px;
  margin-bottom: 15px;
  background: #e9f7ef;
  border: 1px solid #a3d9b1;
}

/* OTP（二段階認証）コード再送リンク */
.resendArea {
  text-align: center;
  margin-top: 18px;
}
.resendLink {
  background: none;
  border: none;
  color: #35AFC2;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
  padding: 0 0 15px 0;
}