:root {
  --base-orange: #CB1C3F;
  --base-purple: #1C3664;
  --base-purple-light: #5b5fd5;
  --base-purple-light2: #a9acff;
  --base-white: #ffffff;
}

.error {
  color: red !important;
}

.text-orange {
  color: var(--base-orange) !important;
}

.text-purple {
  color: var(--base-purple);
}

.text-light-purple {
  color: var(--base-purple-light);
}

.text-light-purple2 {
  color: var(--base-purple-light2);
}

.rcxHomePage {
  margin-bottom: -10px;
}

.input-group-append {
  top: 10px;
  z-index: 6;
  right: 10px;
  color: var(--base-orange);
  position: absolute;
}

.cursor-pointer {
  cursor: pointer;
}

.otp_field {
  width: 10% !important;
  display: inline-flex;
}

#TwoFA_modal {
  .modal-header {
    padding: unset;
    font-size: larger;
  }

  h1 {
    font-size: 2.5rem;
  }
}

.accretivLogin {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  padding: 30px 0px;
  background-image: linear-gradient(to right, #cb1c3f 10%, #ee355a 50%, #ffffff 50%);

  .leftPanel {
    display: flex;
    justify-content: center;
    /* align-items: center; */
    padding: 10px 0 0 4em;

    img {
      max-width: 95%;
      height: auto;
      object-fit: cover;
      object-position: center;
    }

    h2 {
      font-size: 2.5rem;
      font-weight: bold;
      line-height: 1.3;
      color: #fff;
    }

    p {
      font-size: 1.2rem;
      margin-top: 15px;
      color: #fff;
    }
  }

  #claimProfileBuildOut:hover {
    background: #1C3664;
  }

  .rightPanel {
    background-color: var(--base-white);
    display: flex;
    /* justify-content: center; */
    /* align-items: center; */
    padding: 1rem 2rem;
  }

  .content-wrapper {
    width: 100%;
    /* max-width: 500px; */
  }

  h1 {
    font-size: 60px;
  }

  .text-white {
    color: var(--base-white);
  }

  h1.text-purple {
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-control,
  .form-select {
    width: 100%;
    padding: 10px;
    font-weight: 500 !important;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    color: var(--base-orange) !important;
    background-color: #f8f9fa !important;
  }

  .form-control::placeholder {
    color: #b9b9b9 !important;
  }

  .form-select {
    --bs-form-select-bg-img: url("../AccretivUSA/images/select-arrow.png") !important;
    background-image: url("../AccretivUSA/images/select-arrow.png") !important;
  }

  #claimProfileBuildOut,
  .btn-orange {
    background-color: var(--base-orange);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
  }

  .btn-orange:hover {
    background-color: darkorange;
  }

  .footer-links {
    margin-top: 1rem;
    font-size: 0.9rem;
  }

  .footer-links a {
    display: block;
    color: #5b5fd5;
    margin-top: 0.5rem;
    text-decoration: none;
  }

  .footer-links a:hover {
    text-decoration: underline;
  }

  .fs-md-5 {
    font-size: 1.25rem;
  }
}

/* accretivLogin ends */

@media (max-width: 767px) {
  .row {
    flex-direction: column;
  }

  .accretivLogin {
    min-height: auto;
    padding-bottom: 2em;
    background: linear-gradient(to right, #cb1c3f 10%, #ee355a 100%, #ffffff 100%) !important;

    .footer-links,
    .footer-links .d-flex {
      text-align: center;
      justify-content: center;
    }

    .leftPanel,
    .rightPanel {
      width: 100%;
    }

    .fs-md-5 {
      font-size: 1rem;
    }

    .leftPanel {
      img {
        width: 10em;
        display: none !important;
      }

      .d-flex {
        text-align: center;
      }
    }

    .rightPanel {
      padding: 1.5rem;
      border-radius: 10px;
    }

    h1 {
      font-size: 22px;
    }

    h2 {
      font-size: 20px;
    }

    h3 {
      font-size: 18px;
    }

    h4 {
      font-size: 16px;
    }

    h5 {
      font-size: 14px;
    }

    h6 {
      font-size: 12px;
    }

    p {
      font-size: 14px !important;
    }
  }

  #UserLoginForm .form-group:last-of-type {
    text-align: center;
  }

  .content-wrapper {
    h2 {
      text-align: center;
    }
  }
}