:root {
  --primary-color: #8B5CF6;
  --secondary-color: #334756;
  --gradient: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
}

/* new css start */
.auth-wrapper {
  display: flex;
  /* align-items: center; */
  justify-content: center;
  width: 100%;
  min-height: calc(100vh - 56px);
  background: #fff;
  position: relative;
  z-index: 0;
}

.auth-wrapper .content-wrap {
  width: 100%;
  overflow-x: hidden;
  height: 100%;
}

.auth-wrapper .heading-content {
  padding: 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.auth-wrapper .heading-content::before {
  content: "";
  border-radius: 0;
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: url(../images/auth.jpg) center/cover no-repeat;
  top: 0;
  left: 0;
}

.auth-wrapper .heading-content .inner-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: 680px;
  min-height: 680px;
  height: 100%;
  padding: 60px 50px;
  border-radius: 30px;
  max-width: 545px;
  width: 100%;
  background-color: #fffc;
}

.auth-wrapper .heading-content .inner-wrap .description {
  color: #000;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

.auth-wrapper .heading-content .inner-wrap .sub-title h1 {
  color: #000;
  margin-bottom: 5px;
  font-size: 44px;
  line-height: 1.5;
  font-weight: 600;
}

.text-purple {
  color: #8B5CF6;
}

.auth-wrapper .heading-content .inner-wrap .main-title {
  color: #8B5CF6;
  margin-bottom: 10px;
  font-size: 43px;
  font-weight: 600;
}

.auth-wrapper .heading-content .inner-wrap .switcher-info {
  font-size: 18px;
  font-weight: 300;
  color: #000;
}

.auth-wrapper .heading-content .inner-wrap .switcher-info span {
  display: block;
}

.auth-wrapper .heading-content .inner-wrap .switcher-info .switcher-text {
  display: inline-block;
  color: #8B5CF6 !important;
  font-weight: 600;
  text-decoration: none !important;
  transition: all .5s ease-in-out;
}

.auth-wrapper .heading-content .inner-wrap .switcher-info .switcher-text:hover {
  text-decoration: underline !important;
}

.auth-wrapper .heading-content::after {
  content: "";
  border-radius: 0;
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: #0000008c;
  top: 0;
  left: 0;
}

.auth-wrapper .form-content {
  padding: 30px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 60px);
  width: 85%;
  margin: 0 auto;
  max-width: 100%;
}

.auth-wrapper .form-content .main-form {
  width: 100%;
  height: auto;
  padding: 50px;
  background: linear-gradient(to right, #101729, #56389C);
  border-radius: 15px;
}

.auth-wrapper .form-content .main-form .page-title {
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 700;
  color: #fff;
  text-transform: capitalize;
}

.auth-wrapper .form-content .main-form .description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 300;
  color: #fff;
}

.form-label {
  color: #fff;
  font-weight: 500;
}


.theme-btn {
  min-height: 55px;
  display: inline-block;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid var(--primary-color) !important;
  color: #fff;
  background: var(--primary-color);
  padding: 12px 26px;
  transition: all .5s ease-in-out;
  text-decoration: none;
}

.theme-btn:hover {
  background: transparent;
  color: var(--primary-color);
}


.theme-btn-white {
  height: auto;
  display: inline-block;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
  border-radius: 6px;
  border: 1px solid #fff;
  color: var(--primary-color);
  background: #fff;
  padding: 12px 26px;
  transition: all .5s ease-in-out;
  text-decoration: none;
}

.theme-btn-white:hover {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.form-control,
.form-select {
  width: 100%;
  min-height: 55px;
  border: 1px solid #ebebeb !important;
  box-shadow: none !important;
  border-radius: 8px !important;
  font-size: 16px !important;
  color: #000;
  background-clip: unset !important;
}

.forgot-password-btn a {
  color: var(--primary-color);
  transition: all .5s ease-in-out;
}

.forgot-password-btn a:hover {
  color: #fff;
  text-decoration: underline !important;
}

.forgot-box .form-check-label,
.forgot-password-btn a {
  font-size: 16px;
  color: #fff;
}

.forgot-box .form-check-input {
  margin-top: 5px !important;
}

.forgot-box .form-check-input:focus {
  box-shadow: none;
  border-color: var(--primary-color);
}

.form-check-input:checked {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

.form-check-input:checked[type="radio"] {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
}

a {
  text-decoration: none !important;
}

.form-check-label {
  cursor: pointer;
}

.bottom-form a {
  color: var(--primary-color);
  transition: all .5s ease-in-out;
}

.bottom-form a:hover {
  color: #000;
}

.auth-wrapper .heading-content .inner-wrap .switcher-info {
  font-size: 18px;
  font-weight: 300;
  color: #000;
}

.auth-copyright {
  background: linear-gradient(to right, #101729, #56389C);
}

.form-control {
  padding-right: 43px !important;
}

.auth-copyright p {
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  padding: 10px 0;
  font-weight: 400;
}

.auth-copyright p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.auth-copyright p a:hover {
  color: #fffc;
  text-decoration: underline;
}


.resend-btn a {
  color: #fff;
  transition: all .5s ease-in-out;
}

.resend-btn a:hover {
  color: #fff;
  text-decoration: underline !important;
}

.otp-box .form-control {
  width: 50px;
  height: 50px;
  text-align: center;
  min-width: 50px;
  min-height: 50px;
  border-radius: 8px !important;
}

.login-icon {
  position: absolute;
  top: 46px;
  right: 20px;
}

.login-icon i {
  font-size: 20px;
  line-height: 1.5;
  color: var(--primary-color);
}

.auth-form .form-control {
  padding-right: 43px;
}

.main-eye-icon {
  font-size: 20px !important;
  line-height: 1.5 !important;
  color: var(--primary-color) !important;
  top: 15px !important;
  right: 20px !important;
}


.forgot-box .form-check-label a {
  color: var(--primary-color) !important;
  transition: all .5s ease-in-out;
}

.forgot-box .form-check-label a:hover {
  text-decoration: underline !important;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.error {
  color: red !important;
}