/* FORM ONLY CSS */
input,
textarea,
select {
  /* background-color: #f9fafb; */
  color: var(--dark-blue-color);
  /* padding: 10px 15px; */
  height: auto;
  width: 100%;
  /* border: 1px solid var(--dark-blue-color); */
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  padding: 12px 16px;
}

input[type="radio"] {
  accent-color: var(--dark-blue-color);
  transform: scale(1.3);
  transition: transform 0.2s ease-in-out;
  cursor: pointer;
}

input[type="radio"]:checked {
  transform: scale(1.5);
}
.input-group button {
  position: absolute;
  right: 0%;
  top: 0;
  height: 100%;
  background: var(--dark-blue-color);
  color: #fff;
  border: none;
  width: 120px;
}

.form-check-radio-wrapper {
  margin: 20px 0;
}

.form-check-radio-wrapper .form-check-label {
  margin-left: 10px;
}

  .form-checkbox-content {
    display: flex;
    align-items: baseline;
}

.form-checkbox-content input {
    width: 4%;
    margin-right: 4px;
}


/* Form Label */
.ba-vo-form-label {
  font-weight: 500;
  color: #20282d;
  margin-bottom: 0.5rem;
}

.ba-vo-form-control {
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.ba-vo-form-control:focus {
  outline: none;
  border-color: #20282d;
  box-shadow: 0 0 0 3px rgba(32, 40, 45, 0.1);
}
/* Media Query */

input::placeholder,
textarea::placeholder,
select::placeholder
{
 color: gray;
  font-size:13px;
}


@media (max-width: 576px) {
input::placeholder,
textarea::placeholder,
select::placeholder {
  font-size: 12px;
}

}
.error {
color:red;
}

/* Single Page Form Wrapper */
.package-flex {
    justify-content: center;
}

.package-flex .ba-vo-form-section {
    padding: 3rem 1rem;
    max-width: 1000px;
    margin: 25px auto;
}

.ba-vo-form-header {
  text-align: center;
  margin-bottom: 3rem;
}

.ba-vo-form-header h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue-color);
  margin-bottom: 0.5rem;
  line-height: 35px;
}

.ba-vo-form-header p {
  font-size: 0.875rem;
  color: #6b7280;
}
.ba-vo-form-nav-buttons
{
  display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

@media (max-width: 992px) {
  .ba-vo-form-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
 .ba-vo-form-header h2
  {
    width: 90%;
    margin: 0 auto;
    line-height: 30px;
    margin-bottom: 10px;
  }
  .ba-vo-form-header p
  {
    width: 90%;
    margin: 0 auto;
    line-height: 20px;
  }
}

.package-flex .formSubmitBtn
{
    background-color: var(--dark-blue-color) !important;
  width: 50% !important;
  margin: 0 auto;
}

.single-form-header-txt
{
  margin-top: 20px;
}

.single-form-header-txt b
{
  color: var(--dark-blue-color);
}

.highlight-form-content p {
    color: white;
    padding: 15px 50px;
    text-align: center;
}

.highlight-form-content {
    background: var(--dark-blue-color);
    border-radius: 10px;
}

.first-input-wrapper
{
 width: 78%;
  padding-left: 0;  
}

.second-input-wrapper
{
 width: 60%;
    padding-left: 0;  
}

    
@media screen and (max-width: 768px) {
.first-input-wrapper,
.second-input-wrapper {
        width: 60%;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 576px) {
 .first-input-wrapper,
.second-input-wrapper {
        width: 90%;
    }
}

/* BreadCumb Section */
.breadcrumb-section .breadcrumb {
    margin-bottom: 0;
    background-color: #f8f9fa;
}

.breadcrumb-section {
    background-color: #f8f9fa;
}

.breadcrumb-section .breadcrumb li {
    font-family: "Red Hat Display", serif !important;
}

.breadcrumb-section .container-fluid
{
  max-width: 1400px;
}


@media (max-width: 768px) {

    .breadcrumb-section .breadcrumb li {
        font-size: 10px;
    }

    .package-flex .formSubmitBtn {
        width: 100% !important;
    }

}

/* Safari Specific CSS */

@supports (-webkit-appearance: none) {
  input[type="radio"] {
    transform: none; /* disable scale transform for Safari */
  }

  input[type="radio"]:checked {
    transform: none;
  }
}

@media not all and (min-resolution:.001dpcm) { 
  @supports (-webkit-appearance:none) {
    input[type="radio"] {
      transform: scale(1.2); /* smaller scale to avoid Safari issue */
    }
    input[type="radio"]:checked {
      transform: scale(1.3);
    }
  }
}

/* Modal Close */
.modal-custom-close
{
    color: var(--dark-blue-color);
    font-size: 25px;
    background-color: transparent;
    font-weight: bold;
    border: none;
}