/* =========================================================
   LOGIN 360 FINAL
========================================================= */

html,
body.jh-login-body{
  width:100%;
  height:100%;
  min-height:100%;
  overflow:hidden !important;
}

body.jh-login-body{
  margin:0 !important;
  background:
    radial-gradient(circle at 50% 22%, rgba(0,0,0,.055), transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f7f8fb 100%) !important;
  color:#111 !important;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Arial,sans-serif !important;
}

.jh-login-page{
  width:100%;
  height:100svh !important;
  min-height:100svh !important;
  max-height:100svh !important;
  overflow:hidden !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  padding:24px !important;
  box-sizing:border-box !important;
}

.jh-login-box{
  width:min(760px,100%);
  max-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  transform:translateY(-8px);
}

.jh-login-logo{
  width:230px;
  margin:0 auto 42px;
  transition:all .65s cubic-bezier(.22,1,.36,1);
}

.jh-login-logo img{
  width:100%;
  display:block;
}

.jh-login-copy{
  transition:all .45s cubic-bezier(.22,1,.36,1);
}

.jh-login-copy h1{
  max-width:720px;
  margin:0 auto;
  font-size:clamp(34px,4.8vw,58px);
  line-height:1.03;
  letter-spacing:-.062em;
  font-weight:850;
}

.jh-login-copy p{
  max-width:680px;
  margin:22px auto 38px;
  color:#60646c;
  font-size:clamp(17px,1.8vw,23px);
  line-height:1.4;
}

.jh-start-login{
  min-width:176px;
  height:52px;
  border:0;
  border-radius:999px;
  background:#050505;
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:16px;
  font-weight:750;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(0,0,0,.16);
  transition:.25s ease;
}

.jh-start-login:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 54px rgba(0,0,0,.22);
}

.jh-login-footer{
  margin-top:42px;
  color:#858b94;
  font-size:14px;
  font-weight:550;
}

.jh-login-form-area{
  width:min(480px,100%);
  margin:0 auto;
  display:none;
  opacity:0;
  transform:translateY(16px);
  transition:all .45s cubic-bezier(.22,1,.36,1);
}

.jh-login-page.is-login-open .jh-login-logo{
  width:112px;
  margin-bottom:30px;
}

.jh-login-page.is-login-open .jh-login-copy{
  display:none;
}

.jh-login-page.is-login-open .jh-login-form-area{
  display:block;
  opacity:1;
  transform:translateY(0);
}

.jh-form-heading{
  text-align:center;
  margin-bottom:26px;
}

.jh-form-heading h2{
  margin:0;
  font-size:34px;
  line-height:1.05;
  letter-spacing:-.045em;
  font-weight:850;
}

.jh-form-heading p{
  margin:12px 0 0;
  color:#6b7280;
  font-size:17px;
}

.jh-login-form{
  width:100%;
}

.jh-login-step{
  display:none;
  animation:jhLoginStep .28s ease;
}

.jh-login-step.is-active{
  display:block;
}

@keyframes jhLoginStep{
  from{
    opacity:0;
    transform:translateY(8px);
  }

  to{
    opacity:1;
    transform:none;
  }
}

.jh-input-button-wrap{
  position:relative;
  width:100%;
}

.jh-input-button-wrap input{
  width:100%;
  height:58px;
  border:1.5px solid #b8bec8;
  border-radius:14px;
  background:#fff;
  color:#111;
  padding:0 58px 0 18px;
  font-size:17px;
  outline:none;
  box-shadow:0 1px 2px rgba(0,0,0,.02);
  transition:.2s ease;
  box-sizing:border-box;
}

.jh-input-button-wrap input:focus{
  border-color:#111;
  box-shadow:0 0 0 4px rgba(0,0,0,.065);
}

.jh-input-arrow{
  position:absolute;
  right:10px;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  min-width:38px;
  margin:0;
  padding:0;
  border-radius:999px;
  border:1.5px solid #aeb4bd;
  background:#fff;
  color:#6b7280;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:.2s ease;
}

.jh-input-arrow:hover{
  background:#111;
  border-color:#111;
  color:#fff;
  box-shadow:none;
}

.jh-back-button{
  margin:0 0 14px;
  padding:0;
  border:0;
  background:transparent;
  color:#1f6feb;
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:14px;
  font-weight:650;
  cursor:pointer;
}

.jh-remember{
  margin:22px auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  color:#34343a;
  font-size:15px;
  font-weight:600;
}

.jh-remember input{
  width:18px;
  height:18px;
  accent-color:#111;
}

.jh-login-error{
  width:100%;
  margin:0 auto 20px;
  padding:14px 16px;
  border-radius:14px;
  background:#fff1f1;
  border:1px solid #ffd4d4;
  color:#b42318;
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:650;
  box-sizing:border-box;
}

@media(max-width:720px){
  .jh-login-page{
    padding:22px 18px !important;
  }

  .jh-login-box{
    transform:none;
  }

  .jh-login-logo{
    width:170px;
    margin-bottom:36px;
  }

  .jh-login-copy h1{
    font-size:36px;
  }

  .jh-login-copy p{
    font-size:17px;
    margin-bottom:32px;
  }

  .jh-login-page.is-login-open .jh-login-logo{
    width:88px;
    margin-bottom:26px;
  }

  .jh-form-heading h2{
    font-size:30px;
  }

  .jh-form-heading p{
    font-size:15px;
  }
}

@media(max-height:700px){
  .jh-login-logo{
    width:170px;
    margin-bottom:28px;
  }

  .jh-login-copy h1{
    font-size:42px;
  }

  .jh-login-copy p{
    margin:16px auto 26px;
    font-size:18px;
  }

  .jh-login-footer{
    margin-top:26px;
  }

  .jh-login-page.is-login-open .jh-login-logo{
    width:74px;
    margin-bottom:18px;
  }

  .jh-form-heading{
    margin-bottom:18px;
  }

  .jh-form-heading h2{
    font-size:28px;
  }
}