
      #body {
      font-family: Arial, sans-serif;
      overflow: hidden;
      padding-right: 20px;
      margin: auto;
      padding-top: 5px;
      }


      .note {
      font-size: 12px;
      margin-bottom: 20px;
      color: #1b1919;
      }

      .form-group {
      position: relative;
      }

      label {
     display: block;
    color:#302e2c;
    font-size: 0.9rem;
    margin-bottom: 14.2px;
      }

      .required::after {
      content: " *";
      color: black;
      }

      input[type="text"],
      input[type="email"],
      input[type="date"],
      input[type="time"],
      input[type="number"],
      input[type="tel"]{
       border: none;
        border-bottom: 1px solid #302e2c;
        outline: none;
        font-size: 0.95rem;
        background-color: rgba(250, 250, 250, 1);
        width: -webkit-fill-available;
        padding-bottom: 5px;
      }

      select {
      border: none;
      border-bottom: 1px solid #302e2c;
      outline: none;
      font-size: 14px;
      appearance: none;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6"><path d="M0 0l6 6 6-6z" fill="%23000"/></svg>') no-repeat;
      background-position: right 5px center;
      cursor: pointer;
      width: -webkit-fill-available;
      padding-bottom: 5px;
      }

      .error-text {
      color: #ff0000;
      font-size: 12px;
      margin-top: 5px;
      display: none; /* Hide error messages by default */
      }

      .radio-group {
      margin-bottom: 20px;
      }

      .radio-option {
      display: flex;
      align-items: center;
      }

      .radio-option input[type="radio"] {
     margin-right: 10px;
    margin-top: -8px;
      }

      .radio-label{
      color: black;
      font-family: Arial;
      margin-top: 10px;
      }

      textarea {
      height: 80px;
      resize: none;
      outline: none;
      font-size: 14px;
      width: -webkit-fill-available;
      resize: vertical;
      max-width: 100%;
      }

     .submit-btn {
      background-color: #055b77;
      color: white;
      border: none;
      cursor: pointer;
      width: auto;
      font-size: 0.9rem;
      font-weight: 500;
      border-radius: 0.2rem !important;
      padding: 10px 20px;
      z-index: 1000;
      transition: background-color 0.3s ease;
      margin-top:15px;
      
   }

    .submit-btn:hover 
   {
      background-color: #2388a8;
      box-shadow: 0 6px 20px 0 rgba(0,0,0,0.05), 0 6px 20px 0 rgba(0,0,0,0.05);
   }


      /* Styling for inline error messages */
      .input-container {
      position: relative;
      }

      .error-span {
      color: #AC1010;
      font-size: 10px;
      display: none;
      position: absolute;
      bottom: -18px;
      left: 0;
      margin: 0px 0px 4px;
      }

      /* Show errors when form is submitted and field is invalid */
      form.attempted-submit input:invalid + .error-span,
      form.attempted-submit select:invalid + .error-span {
      display: inline;
      }

      .form-row {
      display: flex;
      gap: 20px;
      }
      .form-group {
      flex: 1;
      margin-bottom: 17px;
      }

      .radio-group {
      margin-bottom: 20px;
      margin-top:-8px;
      }

      .radio-option {
      display: flex;
      align-items: center;
      margin-top:-6px;
      }

      .radio-option input[type="radio"] {
     margin-right: 10px;
     margin-top: -8px;   
     accent-color: black;
     width: 18px;            
     height: 18px;
     border: 3px solid #000;
      }

      .radio-label{
      color: black;
      font-family: Arial;
      margin-top: 8px;
      font-size: 0.9rem;
      }
  
  #requestInfoText {
    margin-top: -8px;
    display: block;
    color: rgb(90, 92, 94, 1);
    font-size: 0.8rem; 
    line-height: 1.5rem;
  }

  #contactUsText {
    display: block;
    color: rgb(90, 92, 94, 1);
    font-size: 0.7rem; 
  }
   
  #loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(250, 250, 250, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }
  
  .form-container
   {
    flex: 1; 
    max-width: 600px; 
   }
  
  .spinner {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #595959;
    border-bottom: 6px solid #595959;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 0.8s linear infinite;
  }

  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

#all-error{
bottom: 39px;     
font-size: 15px;

}