 /* Popup container */
 .form-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 3px solid #000000;
    z-index: 999;
    background-color: #144E87;
    padding: 20px;
    max-width: 400px; /* Modified */
    width: 100%; /* Modified */
    animation: popup 0.5s ease-out; /* Apply the animation */
  }

  .custom-select select {
    max-width: 400px;
    width: 100%; /* Set the width */
    height: 40px; /* Set the height */
    border: 1px solid #ccc; /* Set the border color */
    border-radius: 5px;
    margin-bottom: 10px;
  }

  .logo-container {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
    }
  
  .logo {
    width: 50px; /* Adjust the width of the image as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Adjust the margin between the image and text */
  }
  
  .logo-text {
    font-size: 36px; /* Adjust the font size of the text */
    font-weight: bold;
    color: #333; /* Adjust the color of the text */
  }
  
  
  .custom-select option.select {
    max-width: 400px;
    width: 100%; /* Set the width */
    height: 40px; /* Set the height */
    border: 2px solid #f1f1f1; /* Set the border color */
    border-radius: 2px;
  }
  
  
  
  /* Full-width input fields */
  .form-container input[type=text],
  .form-container input[type=tel],
  .form-container input[type=email] {
    width: 100%;
    padding: 10px; /* Modified */
    margin: 5px 0 10px 0; /* Modified */
    border: 1px solid #ccc; /* Modified */
    border-radius: 4px; /* Modified */
    box-sizing: border-box; /* Modified */
  }

  /* Close icon */
.close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    cursor: pointer;
  }

  .button-container {
    text-align: right; /* Align button to the right */
  }
  

  .btn {
    width: 100px;
    height: 30px;
    font-size: 20px;
    font-weight: bold;
    color: #144E87;    
  }

  #loader {
    text-align: center;
    font-size: 20px;
    color: white;
  }

  
  