:root {
  --base-orange: #f67429;
  --base-purple: #023D67;
  --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;
  right: 10px;
  color: #f67429;
  position: absolute;
}
.cursor-pointer{
  cursor: pointer;
}
.accretivLogin {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0) 50%, white 50%),
        url("../AccretivUSA/images/main-bg.png");
      background-size: cover;
      background-position: left center;
      background-repeat: no-repeat;
      display: flex;
      justify-content: flex-end;
      align-items: center;
  /* background-image: linear-gradient(
    to right,
    #352f7d 30%,
    #1676ac 50%,
    #ffffff 50%
  ); */

  .leftPanel {
    display: flex;
    padding-left:8%;
    /* 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 0rem 0rem 5rem;
  }

  .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-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-image: linear-gradient(
      to bottom,
      #352f7d 20%,
      #1676ac 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 {
      justify-content: center;
      padding-left: 0%;
      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;
  }
}
