/* 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 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;
}

}

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

.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;
}


@media (max-width: 768px) {

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