:root {
  font-size: 62.5%;
}

.background {
  width: 100%;
  height: 100vh;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  background-color: #F7F9FC;
}

.login_body {
  width: 100%;
  height: 100vh;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: auto;
  padding: 20px;
}

.login_body .login_box {
  overflow: hidden;
}

.login_body.single .login_box {
  width: 100%;
  position: relative;
  max-width: 540px;
  height: auto;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  padding: 60px 20px;
  border-radius: 12px;
}

.login_body.single .login_box .login_form {
  width: 100%;
  position: relative;
}

.login_body.single .login_box .login_form > img {
  margin: 0 auto 40px;
  padding-right: 40px;
}

.login_body.single .login_box .login_form .row {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

.login_body.single .login_box .login_form .row:last-child {
  margin-bottom: 0;
}

.login_body.double .login_box {
  width: 100%;
  height: 80%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  background-color: var(--box-color);
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
}

.login_body.double .login_box .login_image_box {
  width: 50%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  overflow: hidden;
}

.login_body.double .login_box .login_image_box .info ul {
  margin-top: 10px;
}

.login_body.double .login_box .login_image_box img {
  margin: 0 auto;
}

.login_body.double .login_box .login_image_box .ball {
  border-radius: 100%;
  position: absolute;
  pointer-events: none;
  -webkit-transition: all .2s;
  transition: all .2s;
}

.login_body.double .login_box .login_image_box .ball-1 {
  width: 28rem;
  height: 28rem;
  background-color: var(--blue);
  opacity: .2;
  right: -6rem;
  top: -6rem;
}

.login_body.double .login_box .login_image_box .ball-2 {
  width: 24rem;
  height: 24rem;
  background-color: var(--green);
  opacity: .2;
  right: 10rem;
  top: -8rem;
}

.login_body.double .login_box .login_image_box .ball-3 {
  width: 4rem;
  height: 4rem;
  background-color: var(--orange);
  opacity: .2;
  left: 4rem;
  top: 8rem;
}

.login_body.double .login_box .login_image_box .ball-4 {
  width: 2rem;
  height: 2rem;
  background-color: var(--red);
  opacity: .2;
  left: 9rem;
  top: 6rem;
}

.login_body.double .login_box .login_image_box .ball-5 {
  width: 28rem;
  height: 28rem;
  background-color: var(--dark-aqua);
  opacity: .2;
  left: -7rem;
  bottom: -7rem;
}

.login_body.double .login_box .login_image_box .ball-6 {
  width: 20rem;
  height: 20rem;
  background-color: var(--yellow);
  opacity: .2;
  right: -7rem;
  bottom: -7rem;
}

.login_body.double .login_box .login_image_box .ball-7 {
  width: 4rem;
  height: 4rem;
  background-color: var(--yellow);
  opacity: .2;
  right: 12rem;
  bottom: 12rem;
}

.login_body.double .login_box .login_form {
  width: 50%;
  position: relative;
  padding: 0 40px;
}

.login_body.double .login_box .login_form > h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--main-color);
}

.login_body.double .login_box .login_form .row {
  width: 100%;
  position: relative;
  margin-bottom: 10px;
}

.login_body.double .login_box .login_form .row:last-child {
  margin-bottom: 0;
}

.login_body.double .login_box .login_form .info {
  display: none;
}

.login_body input[type="text"],
.login_body input[type="password"] {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  padding: 0px 20px;
  -webkit-transition: border-color .2s;
  transition: border-color .2s;
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}

.login_body input[type="text"]:focus,
.login_body input[type="password"]:focus {
  border-color: var(--main-color);
  outline: none;
}

.login_body input[type="text"]::-webkit-input-placeholder,
.login_body input[type="password"]::-webkit-input-placeholder {
  color: var(--text-light-color);
}

.login_body input[type="text"]:-ms-input-placeholder,
.login_body input[type="password"]:-ms-input-placeholder {
  color: var(--text-light-color);
}

.login_body input[type="text"]::-ms-input-placeholder,
.login_body input[type="password"]::-ms-input-placeholder {
  color: var(--text-light-color);
}

.login_body input[type="text"]::placeholder,
.login_body input[type="password"]::placeholder {
  color: var(--text-light-color);
}

.login_body input[type="password"] {
  padding: 0px 60px 0px 20px;
}

.login_body .password_button {
  width: 60px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  color: var(--text-light-color);
}

.login_body .password_button span {
  font-size: 20px;
}

.login_body .checkbox {
  width: 100%;
  padding: 0px 10px;
}

.login_body .checkbox input:checked ~ label {
  color: var(--main-color) !important;
}

.login_body .checkbox label {
  font-size: 14px;
}

.login_body .checkbox label::before {
  min-width: 18px;
  min-height: 18px;
  margin-right: 4px;
  border-radius: 100%;
}

.login_body .checkbox label::after {
  top: 2.5px;
  left: 6.5px;
}

.login_body .button {
  width: 100%;
  min-height: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  border-radius: 30px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  opacity: .8;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.login_body .button:hover {
  opacity: 1;
}

.login_body .info {
  width: 100%;
  position: relative;
}

.login_body .info ul {
  width: 100%;
  position: relative;
  margin-top: 40px;
}

.login_body .info ul li {
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-bottom: 6px;
}

.login_body .info ul li span {
  font-size: 20px;
  margin-right: 6px;
  color: #606060;
}

.login_body .info ul li p {
  font-size: 14px;
  color: var(--text-color);
}

@media (max-width: 1200px) {
  .login_body.double .login_box {
    max-width: 540px;
    height: auto;
    padding: 60px 20px;
    background-color: rgba(255, 255, 255, 0.95);
  }
  .login_body.double .login_box .login_image_box {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: -1;
    pointer-events: none;
  }
  .login_body.double .login_box .login_image_box img {
    display: none;
  }
  .login_body.double .login_box .login_image_box .info {
    display: none;
  }
  .login_body.double .login_box .login_form {
    width: 100%;
    padding: 0;
  }
  .login_body.double .login_box .login_form .info {
    display: block;
  }
}

@media (max-width: 767px) {
  :root {
    font-size: 50%;
  }
  .login_body .info ul li span {
    font-size: 18px;
  }
  .login_body .info ul li p {
    font-size: 13px;
  }
}

@media (max-width: 519px) {
  :root {
    font-size: 40%;
  }
}

@media (max-width: 364px) {
  :root {
    font-size: 30%;
  }
}
