.forget-password-cover {
  background: #fff;
}

.forget-password-cover .inner {
  --forget-password-max-width: calc(var(--max-width) - 200px);
  max-width: var(--forget-password-max-width);
}

.forget-password-container {
  position: relative;
  padding: 2em;
  height: 30em;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.forget-password-container .title {
  color: #F37320;
  font-size: 1.8em;
  text-align: center;
  text-transform: uppercase;
  height: 2em;
}

.forget-password-container hr {
  width: 100%;
  border-top: 1px solid #000000
}

.forget-password-container input,
.forget-password-container input:focus {
  color: rgb(0, 0, 0);
  background: transparent;
}

.forget-password-container input::-webkit-input-placeholder {
  color: #808285;
}

.forget-password-container input:-ms-input-placeholder {
  color: #808285;
}

.forget-password-container input::-ms-input-placeholder {
  color: #808285;
}

.forget-password-container input::placeholder {
  color: #808285;
}

.forget-password-container .btn {
  background: #F37320;
  text-transform: uppercase;
  font-weight: 700;
  width: 100%;
}

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

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

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

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

.forget-password-container .forget_password_form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(var(--forget-password-max-width) - 250px);
  margin: 0 auto;
  height: 300px;
  padding: 2em 0;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
}

.forget-password-container .forget_password_form .form {
  width: inherit;
}

.forget-password-container .forget_password_form .forget-password-element-or {
  font-size: 1.5em;
  color: #000000;
}

.forget-password-container .forget_password_form .forget-password.btn {
  width: 100%;
  line-height: 2;
}

.forget-password-container .forget_password_form .forget-password.btn.create-account {
  line-height: 30px;
}

@media only screen and (max-width: 480px) {
  .forget-password-container {
    height: 40em;
  }
}