@import url(_variable.css);

body {
  padding: 0 !important;
  margin: 0 !important;
  font-family: var(--font-Nunito);
  font-size: var(fs18);
  background: var(--bg_color1);
}

.wd-flex-body {
  display: flex;
}

.wd-left-col {
  width: 40%;
  display: flex;
  align-items: center;
  background-color: var(--white_color);
  padding: 100px;
  box-sizing: border-box;
  height: 100vh;
  overflow-y: auto;
}
.wd-left-col::-webkit-scrollbar {
  display: none;
}
.wd-right-col {
  width: calc(100% - 40%);
  height: 100vh;
  background: url("../images/mainbg.svg") no-repeat;
  /* background: red; */
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

p.copyright-text {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary_color);
  font-weight: 600;
}

.wd-form-xs {
  width: 100%;
  margin: 0 auto;
}

.wd-form-xs h4 {
  font-weight: 600;
  font-size: 30px;
}
.wd-form-xs .wd-subtitle {
  font-size: 16px;
  margin-bottom: 25px;
  font-family: var(--font_rubik);
}

.wd-form-xs label {
  font-size: 15px;
  margin-bottom: 10px;
  font-weight: 500;
  font-family: var(--font_rubik);
  display: block;
}

.wd-form-xs .form-control {
  outline: 0 !important;
  height: 55px;
  box-shadow: none !important;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  border: 1px solid #9d9d9d9e;
}

.wd-form-xs p,
.wd-message-box p {
  font-size: 15px;
}

.wd-message-box {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.wd-message-box h4 {
  font-size: 50px;
  font-weight: 600;
  line-height: normal;
  margin-top: 40px;
}

.wd-message-box img {
  max-width: 400px;
}
.wd-white {
  color: #fff;
}
.password-instruct {
  font-size: 13px;
}
.password-instruct p {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}
@media (max-width: 1199px) {
  .wd-left-col,
  .wd-right-col {
    width: 50%;
  }
  .wd-left-col {
    padding: 20px 50px;
  }
}
@media (max-width: 1024px) {
  .wd-left-col,
  .wd-right-col {
    width: 50%;
  }
  .wd-left-col {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  body {
    background: var(--white_color);
  }
  .wd-left-col {
    width: 100%;
    flex-direction: column;
    padding: 20px;
    padding-top: 60px;
  }

  .wd-right-col {
    display: none;
  }
}
