* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f8f8fb;
  font-family: 'Calibri', sans-serif;
  line-height: 1.3;
  height: 100%;
  overflow: auto;
  scrollbar-width: none;
  overflow-y: scroll;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */

}

.container {
  display: flex;
  min-height: 300px;
  margin-top: 0px;

}

.left-column {
  flex: 1;
  /* padding: 0px 80px 0px 60px; */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  margin-top: 0px;
  /* height: 100%; */
  min-height: 400px;
}

.left-column h2 {
  font-size: 24px;
  margin-bottom: 30px;
}

.form-group {

  position: relative;

}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #000;
  font-weight: 400;
}

.form-group input, select {
  width: 100%;
  border: 0px;
  border-bottom: 1px solid #aaa;
  border-radius: 0px;
  outline: none;
  background-color: transparent;
}

.form-inline {
  display: flex;
  gap: 10px;
}

.form-inline input:first-child {
  width: 30%;
}

.form-inline input:last-child {
  width: 70%;
}

.otpform-inline {
  display: flex;
  gap: 26px;
}

.otpform-inline input:only-child {
  width: 20%;
}

.form-group small {
  color: #e2e2e2;
  display: block;
  margin-top: 5px;
  font-size: 12px;
}

.error-icon {
  position: absolute;
  right: 10px;
  top: 42px;
  color: #848484;
}

.note {
  color: #848484;
  font-size: 12px;
  margin-bottom: 10px;
}

.terms {
  font-size: 13px;
  margin-bottom: 20px;
}

.terms strong {
  font-weight: 600;
}

.submit-btn {
  background-color: #39b44a;
  color: #fff;
  padding: 12px 0;
  border: none;
  border-radius: 4px;
  width: 30%;
  font-size: 16px;
  cursor: pointer;
  align-items: center;
}

.signin-link {
  margin-top: 15px;
  font-size: 14px;
}

.signin-link a {
  color: #0038ff;
  text-decoration: none;
}

.right-column {
  flex: 1;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 60px 0px 60px;
  /* height: 100%; */
  min-height: 400px;


}

.right-column img {
  max-width: 100%;
  max-height: 460px;


}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-column,
  .right-column {
    width: 100%;
    padding: 30px;
  }
}

/* Footer */
.footer-sign {
  text-align: center;
  margin-top: -210px;
  margin-bottom: 0px;
}

.footer-sign-line {
  width: 60%;
  /* or 200px */
  margin: 0px auto;
  /* center it */
  border: none;
  border-top: 1px solid #d3c8c8;
  /* color and thickness */

}

.footer-sign-text {
  font-style: italic;
  font-size: 14px;
  color: #444;
  margin-top: 0px;
  margin-bottom: 10px;

}