@import "./variables.css";
.main-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.form-section, .img-section {
  height: 100vh;
  width: 50%;
}

.form-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: var(--bg-color1);
  padding: 0 24px;
}

.img-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -moz-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: var(--bg-color2);
}

.form-content {
  width: 380px;
}

.main-form-content {
  background-color: var(--bg-form);
  padding: 56px 32px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.main-form label {
  color: var(--text-color);
  font-size: 12px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 4px;
}

.input {
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background: var(--bg-input);
  height: 40px;
  width: 100%;
  padding: 0 16px;
  color: var(--text-color);
}

.form-title {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0.3px;
  font-family: GHEAHelveticaGeoBold;
}

.form-txt {
  color: var(--text-color);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
  margin-bottom: 32px;
}

.email {
  margin-bottom: 32px;
}

.forgot-password {
  display: block;
  color: #0092F5;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
  margin: 16px 0 32px;
}

.login-btn {
  padding: 8px 16px;
  border: 1px solid #2DAC84;
  display: block;
  width: 100%;
  text-align: center;
  border-radius: 6px;
  margin-bottom: 40px;
  color: #fff;
  background: var(--bg-btn);
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.login-btn:hover {
  background: var(--btn-hover);
  transition: 0.3s linear;
}

.top-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 16px;
}

.form-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.link-txt {
  color: var(--link-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3px;
}

.link {
  margin-left: 8px;
  color: #2DAC84;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.3px;
}

.login-img {
  margin-bottom: 85px;
}

.login-banner-txt {
  width: 100%;
  padding-left: 72px;
  padding-bottom: 63px;
}

.mini-title {
  color: var(--banner-title);
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 1.6px;
  margin-bottom: 4px;
}

.main-title {
  color: var(--banner-title);
  font-family: GHEAHelveticaGeoBold;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 2.56px;
}

.light-img {
  display: var(--light-img)
}

.dark-img {
  display: var(--dark-img)
}

.password {
  position: relative;
}

.eye {
  position: absolute;
  right: 8px;
  top: 26px;
  cursor: pointer;
}

.form-content-registration {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

.agree-to, .input-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  margin-bottom: 24px;
}

.input-content {
  width: 100%;
}

.mb {
  margin-bottom: 24px;
}

.input-flex > div:first-child {
  margin-right: 24px;
}

.check-label {
  color: var(--label-text-color) !important;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0.3px;
  margin-left: 10px;
  margin-top: 2px;
}

.check-label a {
  color: #2DAC84;
}

.input-content {
  position: relative;
}

.input-content .error {
  position: absolute;
  left: 5px;
  bottom: -17px;
  color: #EC634C;
  font-size: 12px;
}

@media (min-width: 1930px) {
  .login-img {
    width: 40%;
  }
}

@media (max-height: 900px) {
  .login-img {
    width: 53%;
    margin-bottom: 42px;
  }

  .main-title {
    font-size: 48px;
  }

  .top-section img {
    width: 90px;
  }

  .main-form-content {
    padding: 28px 32px;
  }
}

@media (max-width: 1240px) {
  .login-img {
    margin-bottom: 85px;
    width: 60%;
  }

  .main-title {
    font-size: 49px
  }

  .mini-title {
    font-size: 28px;
  }
}

@media (max-width: 900px) {
  .main-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .form-section, .img-section {
    height: auto;
    width: 100%;
  }

  .img-section {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .login-img {
    width: 28%;
    margin-bottom: 16px;
    margin-top: -40px;
  }

  .login-banner-txt {
    padding-left: 24px;
    padding-bottom: 24px;
  }

  .main-title {
    font-size: 36px;
  }

  .form-section {
    padding: 24px 16px;
  }

  .top-section img {
    width: 72px;
  }
}

@media (max-width: 780px) {
  .main-title {
    font-size: 26px;
  }

  .mini-title {
    font-size: 18px;
  }

  .login-img {
    width: 32%;
  }
}

@media (max-width: 450px) {
  .img-section {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .login-banner-txt {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    position: relative;
  }

  .login-img {
    width: 224px;
    margin-right: 24px;
    margin-bottom: 27px;
  }

  .main-form-content {
    padding: 24px;
  }

  .main-title {
    white-space: nowrap;
  }

  .mini-title {
    position: absolute;
    top: -46px;
    left: 24px;
  }

  .main-title {
    position: absolute;
    left: 24px;
    top: -24px;
  }

  .input-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .input-flex > div:first-child {
    margin-right: 0;
    margin-bottom: 24px;
  }
  .form-content-registration .input-flex > div:first-child {
    margin-bottom: 8px;
  }
}

@media (max-width: 377px) {
  .mini-title {
    left: 16px;
  }

  .main-title {
    left: 16px;
  }
}
