:root {
  --base-orange: #fad347;
  --base-purple: #004fa9;
  --base-purple-light: #2e79cf;
  --base-purple-light2: #004fa9;
  --base-white: #ffffff;
  --base-black:#111;
}
.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-black);
  position: absolute;
}
.cursor-pointer{
  cursor: pointer;
}
.accretivLogin {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: linear-gradient(
    to right,
    #111 10%,
    #111 50%,
    #ffffff 50%
  );

  .leftPanel {
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      width: 20em;
      height: auto;
      object-fit: cover;
      object-position: center;
    }
  }

  .rightPanel {
    background-color: var(--base-white);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .content-wrapper {
    width: 100%;
    max-width: 500px;
  }

  h1.text-purple {
    margin-bottom: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-control,
  .form-select {
    width: 100%;
    padding: 10px;
    border-radius: 0.5rem;
    border: 1px solid #ccc;
    color:  var(--base-black) !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-purple);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
  }
  #claimProfileBuildOut:hover,
  .btn-orange:hover {
    background-color: var(--base-orange);
    color: #111;
  }
  .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-image: linear-gradient(
      to bottom,
      #111 20%,
      #111 35%,
      #ffffff 35%
    );
    .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;
      }
      .d-flex {
        text-align: center;
      }
    }
    .rightPanel {
      padding: 0.5rem;
    }
    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;
  }
}
