.register-cover {
  background: #fff;
}

.register-cover .inner {
  max-width: calc(var(--max-width) - 250px);
}

.create-account-container {
  position: relative;
  padding: 2em 3em;
  color: black;
}

.create-account-container .title {
  display: block;
  color: #F37320;
  font-size: 2em;
  padding-bottom: 1em;
  text-align: center;
  text-transform: uppercase;
}

.create-account-container hr {
  margin-top: -0.5rem;
  margin-bottom: 2rem;
  border: 0;
  border-top: 1px solid #000000;
}

.create-account-container .have-an-existing-account {
  display: block;
  padding: .1em 0;
  color: #000000;
}

.create-account-container .create-account.btn {
  width: 100%;
  height: 50px;
  line-height: 25px;
  background: #F37320;
  color: #ffffff;
}

.create-account-container .create-account.btn.sign-in {
  line-height: 30px;
}

.create-account-container input,.create-account-container input:focus {
  color: #000000;
  background: transparent;
}


.create-account-container input::-webkit-input-placeholder {
  color: #808285;
}

.create-account-container input:-ms-input-placeholder {
  color: #808285;
}

.create-account-container input::-ms-input-placeholder {
  color: #808285;
}

.create-account-container input::placeholder {
  color: #808285;
}

.create-account-container .otp-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  margin: 0;
  padding: 0;
}

.create-account-container .otp-container .enter_otp {
  width: 50%;
  border-bottom-right-radius: 0 !important;
}

@media only screen and (max-width: 450px) {
  .create-account-container .otp-container .enter_otp {
    width: 100%;
  }
}

.create-account-container .otp-container .request-otp-button {
  overflow: hidden;
  width: 50%;
  margin-left: 10px;
  border-radius: 0.25rem;
  background: #F37320;
  color: #fff;
}

.btn.transparent {
  background: transparent;
}

.border-line {
  position: relative;
  background: #000;
}

.border-line-1 {
  height: 1px;
}

.border-outline-1 {
  border: solid 1px #000000;
}

.border-outline-2 {
  border: solid 2px #000000;
}

.center {
  position: relative;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.center-top {
  text-align: center;
  top: 50%;
  height: 100%;
  -webkit-transform: translate(-10px, 50%);
  transform: translate(-10px, 50%);
}