/* custom styling */
:root {
  --green: #119955;
  --white: #ffffff;
  --Primary01: #3bb3c3;
  --Primary03: #006e7f;
  --grey01: #061238;
  --grey02: #546988;
  --grey03: #6f8ca9;
  --grey04: #b2c7d7;
  --grey05: #dae6ef;
  --grey06: #f4f8fa;
  --red01: #e94235;
}
/* Helper */
.h100 {
  height: 100%;
}
.w100 {
  width: 100%;
}

.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.ph-50{
  padding: 0 50px;
}
.hide,
.hideElement {
  display: none;
}
.flex {display: flex;}
.flex-column {flex-direction: column;}
.align-center {align-items: center;}
.justify-between{justify-content: space-between;}
.justify-around{justify-content: space-around;}
.justified-start{justify-content: flex-start;}
.iblock {
  display: inline-block;
}
.block {display: block;}
.iflex {
  display: inline-flex;
}
.overflow-auto{
  overflow: auto;
}
.overflow-hidden{
  overflow: hidden;
}
.t0 {
  top: 0;
}
.t10 {
  top: 10px;
}
.r10 {
  right: 10px;
}
.z1 {
  z-index: 1;
}

.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}
.mt6 {
  margin-top: 6px;
}
.mt8 {
  margin-top: 8px;
}
.mt9 {
  margin-top: 9px;
}
.mt10 {
  margin-top: 10px;
}
.mt32 {
  margin-top: 32px;
}
.mt48 {
  margin-top: 48px;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb30 {
  margin-bottom: 30px;
}
.mb32 {
  margin-bottom: 32px;
}
.mr5 {
  margin-right: 5px;
}
.mr10 {
  margin-right: 10px;
}
.mr20 {
  margin-right: 20px;
}
.text-underline-none {
  text-decoration: none;
}
.text-underline-none:hover {
  text-decoration: none;
}
.overflow-hidden {
  overflow: hidden;
}
.pointer {
  cursor: pointer;
}

.border-none {
  border: none !important;
}

.p0 {
  padding: 0 !important;
}

.pl0 {
  padding-left: 0;
}
.pr0 {
  padding-right: 0;
}
.pr35 {
  padding-right: 35px !important;
}

.fs14 {
  font-size: 14px;
}
.fs16 {
  font-size: 16px;
}
.fs24 {
  font-size: 24px;
}
.fs32 {
  font-size: 32px;
}
.fw4 {
  font-weight: 400;
}
.fw6 {
  font-weight: 600;
}
.fw7 {
  font-weight: 700;
}
.lh20 {
  line-height: 20px;
}
.lh24 {
  line-height: 24px;
}
.lh45 {
  line-height: 45px;
}
.lh56 {
  line-height: 56px;
}
/* Text color */
.text-grey1 {
  color: var(--color-web-grey-01);
}
.text-grey2 {
  color: var(--color-web-grey-02);
}
.text-grey3 {
  color: var(--color-web-grey-03);
}
.text-primary03 {
  color: var(--color-web-teal-01);
}
.text-white {
  color: var(--color-web-grey-06);
}
.bg-brand {
  background-color: var(--color-web-primary-01);
}
/* Text color */
/* Helper */

/* Forget Password */
.error_message {
  color: #ea3546;
  font-size: 14px;
  font-weight: 400;
}
/* For Radio Buttons */
.styled-radio {
  position: absolute;
  opacity: 0;
  display: none;
}

.styled-radio + label {
  position: relative;
  cursor: pointer;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-web-grey-01);
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.styled-radio + label:before {
  content: '';
  margin-right: 10px;
  display: flex;
  float: left;
  width: 20px;
  height: 20px;
  background: var(--color-web-grey-06);
  border: 1px solid var(--color-web-grey-02);
  margin-top: 2px;
  border-radius: 50%;
}

.styled-radio:checked + label {
  color: var(--color-web-grey-01);
}

.styled-radio:checked + label:before {
  border-color: var(--color-web-primary-01);
}

.styled-radio:disabled + label {
  color: var(--color-web-grey-02);
  cursor: auto;
}

.styled-radio:disabled + label:before {
  box-shadow: none;
  background: var(--color-web-grey-06);
  border-color: var(--color-web-grey-02);
}

.styled-radio:checked + label:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 7px;
  background: var(--color-web-primary-01);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.styled-radio:disabled + label:after {
  box-shadow: none;
}
.btn_large__filled {
  margin: 0;
  padding: 12px 24px;
  border: 0;
  border-radius: 28px;
  color: var(--color-web-grey-06);
  font-size: 20px;
  text-transform: capitalize;
  cursor: pointer;
  opacity: 1;
}
.button_continue {
  background-color: var(--color-web-primary-01);
}

.button_airtel {
  background-color: rgb(237, 28, 36);
}
.btn_large__filled:hover,
.btn_large__filled:focus {
  color: var(--color-web-grey-06);
  background-color: var(--color-web-primary-01);
  outline: none;
  box-shadow: none;
}
.btn_large__filled:disabled {
  cursor: not-allowed;
  opacity: 0.3;
}
.react_dark2__small {
  display: flex;
  align-items: center;
  color: var(--color-web-grey-01);
  background-color: transparent;
  outline: none;
  text-decoration: none;
  font-weight: 600;
  font-size: 20px;
  border: 0;
  padding: 12px 0;
}
.react_dark2__small:focus,
.react_dark2__small:hover,
.react_dark2__small:visited {
  color: var(--color-web-grey-01);
  outline: none;
  text-decoration: none;
  background-color: transparent;
}
.square_field::placeholder {
  color: var(--color-web-grey-03);
}
.square_field::-webkit-input-placeholder {
  color: var(--color-web-grey-03);
}
.square_field:-ms-input-placeholder {
  color: var(--color-web-grey-03);
}
.field_label {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--color-web-grey-01);
  margin-bottom: 5px;
  display: block;
}
.square_field__clone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px;
  box-shadow: none;
  border: 1px solid var(--color-web-grey-05);
  border-radius: 6px;
  background-color: var(--color-web-grey-06);
  font-size: 16px;
  color: var(--color-web-grey-01);
  box-sizing: border-box;
  height: 50px;
}
.field-edit-icon {
  display: inline-flex;
}
.square_field {
  display: block;
  width: 100%;
  padding: 12px;
  box-shadow: none;
  border: 1px solid var(--color-web-grey-05);
  border-radius: 6px;
  background-color: var(--color-web-grey-06);
  font-size: 16px;
  color: var(--color-web-grey-01);
  box-sizing: border-box;
}
.square_field:focus {
  box-shadow: none;
  outline: none;
}
.square_field:disabled {
  background-color: #f0f0f0;
}
.forget_tab,
.forget_password__mainWrapper {
  display: none;
}
.otp_inputs__wrapper {
  display: flex;
}
.otp_input__fields {
  width: 25%;
  height: 90px;
  margin-right: 10px;
  border-radius: 6px;
  background-color: var(--color-web-grey-06);
  border: 1px solid var(--color-web-grey-05);
  padding: 10px;
  font-size: 32px;
  color: var(--color-web-grey-01);
  font-weight: 600;
  text-align: center;
}
.otp_input__fields:focus {
  outline: none;
}
.otp_input__fields:last-child {
  margin-right: 0;
}
.otp_input__error .otp_input__fields {
  border-color: red;
}
.square_field__error {
  border-color: red;
}
.timer_section {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  color: var(--color-web-grey-02);
  font-size: 16px;
}
.forget_password__wrapper {
  text-align: left;
}

.confirm_pass__control {
  max-width: 600px !important;
}
.otp_verify__section {
  display: flex;
  margin-top: 25px;
  margin-bottom: 30px;
  align-items: center;
}
.otp_status__message {
  padding-left: 25px;
}
.otp_status__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 31.5px;
  color: var(--color-web-grey-01);
}
.otp_status__tagLine {
  font-size: 16px;
  font-weight: 600;
  line-height: 23.5px;
  color: var(--color-web-grey-02);
  margin-top: 10px;
}
.reset_password__subHeading {
  font-size: 14px;
  font-weight: 400;
  line-height: 15.5px;
  margin-bottom: 5px;
  color: var(--color-web-grey-02);
}
.reset_password__points {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-web-grey-02);
  line-height: 20px;
  padding-left: 15px;
}
.password_reset__rules {
  padding: 15px;
  border: 1px solid var(--color-web-grey-04);
  background-color: var(--color-web-grey-06);
  border-radius: 8px;
  display: flex;
  margin-bottom: 24px;
}
.tab_control__buttons {
  margin: 30px 0  ;
  text-align: right;
}
.previous_tab {
  margin-bottom: 15px;
}
.label_layout {
  display: flex;
  align-items: center;
  padding: 10px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #fff;
}
.label_layout__boundary {
  border-color: var(--color-web-primary-01);
  background-color: var(--color-web-teal-03);
}
.form_group__inline {
  display: flex;
  flex-flow: row nowrap;
}
.country_wrapper {
  flex: 1;
  margin-right: 15px;
}
.phone_field__wrapper {
  flex: 2;
}
/* Forget Passowrd */

.login_form__mainwrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  max-width: 400px;
  flex-direction: column;
  height: 100vh;
}

.description-wrapper {
  display: flex;
  flex: 1;
  align-items: flex-end;
  margin: 30px auto 0;
  max-width: 400px;
}

.description-text {
  color: var(--color-web-grey-02);
  font-size: 16px;
  font-weight: 400;
  opacity: 1;
  margin: 30px 0;
}

.login-form img {
  margin-bottom: 45px;
  width: 100%;
  max-width: 300px;
}
.call-me-btn {
  border: 1px solid #1eacb2;
  border-radius: 5px;
  padding: 10px 20px 10px 20px;
  background-color: #fff;
  color: #1eacb2 !important;
  max-width: 120px;
  margin: 0 auto 30px;
  display: none;
}

.background-image-container {
  background-repeat: no-repeat;
  background-position: bottom;
  -ms-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 100%;
}
.login-footer {
  position: absolute;
  bottom: 0;
  left: 20px;
}
.login-logo {
  text-align: center;
}

/* Banner */
.banner-heading {
  margin-bottom: 30px;
  color: var(--color-web-grey-06);
}
.banner-sub-heading {
  margin-bottom: 24px;
  color: var(--color-web-grey-06);
  opacity: 0.6;
}
.form-welcome-banner {
  margin-bottom: 48px;
  text-align: left;
  margin-top: 0px !important;
}
/* Banner */

/* Password section */
.password-field-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 16px;
}
/* Password section */

.partner-login-card {
  padding: 60px 100px;
  background-color: var(--white);
  border-radius: 7px;
  max-width: 600px;
  height: calc(100vh - 260px);
  justify-content: start;
  align-items: start;
  flex-direction: column;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  min-height: 450px;
  max-height: 700px;
}

.login-back-button {
  background-color: var(--white);
  width: auto;
  border-radius: 100px;
  padding-left: 15px;
  padding-right: 25px;
  font-size: 18px;
}

.login-back-button:hover {
  background-color: var(--white);
}

@media (max-width: 1439px) {
  .form-welcome-banner {
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 720px) {
  .top-bar-section ul {
    margin-right: 0 !important;
  }
  .call-me-btn {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  #landing_page{
    display: none;
  }
  .flex-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .login-header-bar {padding: 0;margin-bottom: 20px;}
  .partner-login-card{
    padding: 20px 40px;
    height:auto;
  }
}
@media (max-height: 847px) {
  .partner-login-card{
    margin-bottom: 20px;
  }
}

@media (max-height: 700px) {
  .partner-login-card{
    min-height: 410px;
  }
  .login-header-bar {
    margin-top: 20px;
  }
  .form-welcome-banner {
    margin-bottom: 20px;
  }
  .form-welcome-banner h1 {
    margin-top: 10px;
    /*font-size:24px;*/
  }
  .mt32,
  .form-welcome-banner,
  .mb32,
  .mt48 {
    /*margin-top: 20px;*/
  }
}
