html {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  height: 100%;
  min-height: 520px;
  color: #47575B;
  position: relative;
  overflow-x: hidden;
  border-top-width: 0;
  background-color: #fff;
}

main {
  width: 100%;
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main .container {
  display: flex;
}

.box {
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin: 50px 0;
  gap: 40px;
}

.form-box,
.info-box {
  flex: 1.2;
  position: relative;
}

.form-box {
  max-width: 360px;
  z-index: 10;
}

.info-box {
  max-width: 550px;
}

.info-box-content {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  border: #EBE9E7 solid 1px;
  padding: 8px;
}
.info-box-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  margin: 16px;
}
.info-box-content h4 {
  color: #47575B;
  margin: 16px;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
}
.info-box-content p {
  margin: 0 16px 16px;
}
.info-box-content h3 + p {
  margin-top: -16px;
}
.info-box-content img {
  width: 100%;
  border-radius: 24px;
}
.info-box-content .ib-progress {
  margin: 16px 16px 40px;
  height: 4px;
  border-radius: 2px;
  background-color: #F1F1F3;
}
.info-box-content .ib-progress-inner {
  position: relative;
  height: 2px;
  top: 1px;
  border-radius: 2px;
  background-color: #4fa3b1;
}

h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 44px;
  margin-bottom: 40px;
  text-align: left;
}

.field-div {
  margin-bottom: 20px;
}

.field-div label {
  width: 100%;
  font-weight: 600;
  color: #2B3233;
  margin: 0 0 8px 0;
}

.field-info {
  top: 38px;
  right: 28px;
  cursor: pointer;
  position: absolute;
}
.field-info i {
  color: #B2B2B2;
  font-size: 20px;
  line-height: 20px;
}

.info-tip {
  right: -15px;
  top: 30px;
  display: none;
  z-index: 1070;
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
}

.info-tip .info-tip-inner {
  width: 300px;
  padding: 16px;
  cursor: default;
  text-align: left;
  color: #2B3233;
  background-color: #cae3e7;
}
.info-tip .info-tip-inner p:last-child {
  margin-bottom: 0;
}

.field-info:hover > .info-tip,
.field-info.active > .info-tip {
  display: flex;
  justify-content: center;
}

.submit-field {
  margin-top: 15px;
}

.form-box-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
}

.magic-link-btn {
  margin-bottom: 30px;
}

input[type=text],
input[type=password] {
  width: 100%;
}

.field-div:has(input[type=text]:focus) label,
.field-div:has(input[type=password]:focus) label {
  color: #4fa3b1;
}

input.error {
  margin-bottom: 0;
  border-left-color: #E54215;
}

label.error {
  color: #E54215;
  font-size: 13px;
  line-height: 20px;
  font-weight: 600;
  padding: 0 10px;
  margin: 5px 0;
}

.ls-captcha-image {
  margin-bottom: 10px;
}

.password-restore {
  text-align: center;
}

.crossline {
  display: flex;
  text-align: center;
  flex-direction: row;
  margin: 15px 0 25px;
  padding: 0;
  color: #47575B;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

.crossline::before,
.crossline::after {
  flex: 1 1;
  content: "";
  margin: auto;
  border-bottom: 1px solid #EBE9E7;
}

.crossline::before {
  margin-right: 20px;
}

.crossline::after {
  margin-left: 23px;
}

.loading {
  background: url(../images/loading.gif) no-repeat 50% 50%;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 46px;
  right: 26px;
}

.ls-required {
  display: none;
}

p.small {
  font-size: 14px;
  line-height: 24px;
}

.ld {
  border-top: #EBE9E7 solid 1px;
  margin: 12px 0 40px;
  padding-top: 12px;
  text-align: left;
  display: flex;
}

.ld.error {
  margin-bottom: 10px;
}

.ld.error input {
  border-color: #E54215;
}

.ld + .error {
  margin: 0 0 30px;
  padding: 0;
}

input[type=checkbox] {
  width: 26px;
  height: 26px;
}

.ld label {
  vertical-align: top;
  color: #2B3233;
}

.magic-cancel,
.reg-return-link {
  margin-top: 20px;
}

.images {
  display: grid;
  grid-template-columns: 2fr 3fr;
  grid-template-rows: 3fr 2fr;
  gap: 30px;
  flex: 1;
  max-width: 654px;
}
.images img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.images img:nth-child(1) {
  grid-area: 1/1/2/3;
  max-height: 300px;
}
.images img:nth-child(2) {
  grid-area: 2/1/3/2;
  max-height: 194px;
}
.images img:nth-child(3) {
  grid-area: 2/2/3/3;
  max-height: 194px;
}

@media screen and (max-width: 767px) {
  main {
    align-items: center;
  }
  .box.login-box,
  .box.reg-box,
  .box.magic-box {
    min-height: 0;
    align-items: center;
    flex-direction: column;
  }
  .box.login-box .form-box + img,
  .box.reg-box .form-box + img,
  .box.magic-box .form-box + img {
    margin-top: -60px;
  }
  .info-box {
    display: none;
  }
  .images {
    gap: 8px;
    margin-bottom: 40px;
  }
  .images img:nth-child(1) {
    max-height: 220px;
  }
  .images img:nth-child(2),
  .images img:nth-child(3) {
    max-height: 140px;
  }
}

/*# sourceMappingURL=page-login-reg.css.map */
