div.required:after {
    content: " *";
    color: red;
}


    /* General Styles */

  
  .quote-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 20px;
  }
  
  /* Header styles */
  .quote-header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .quote-header h1 {
    font-size: 32px;
    color: #006238;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .quote-header p {
    color: #006238;
    font-size: 16px;
  }
  
  /* Form container */
  .form-container {
    display: flex;
    justify-content: center;
  }
  
  .form-card {
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 500px;
    padding: 30px;
    overflow: hidden;
  }
  
  .form-card h2 {
    color: #006238;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
  }
  
  /* Section divider */
  .section-divider {
    position: relative;
    text-align: left;
    margin: 20px 0;
    overflow: hidden;
  }
  
  .section-divider::after {
    content: "";
    position: absolute;
    height: 1px;
    background: #e0e0e0;
    width: 100%;
    left: 0;
    top: 50%;
    z-index: 0;
  }
  
  .section-divider span {
    position: relative;
    display: inline-block;
    background: white;
    padding-right: 10px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    z-index: 1;
  }
  
  /* Form styles */
  .form-group {
    margin-bottom: 20px;
    position: relative;
  }
  
  label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 14px;
    color: #2c3e50;
  }
  
  .required-field::after {
    content: "*";
    color: #e74c3c;
    margin-left: 4px;
  }
  
  input, select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  input:focus, select:focus {
    outline: none;
    border-color: #01764d;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.15);
  }
  
  input::placeholder, select::placeholder {
    color: #95a5a6;
  }
  
  /* Button styles */
  .submit-button {
    width: 100%;
    padding: 13px 18px;
    background-color: #015b3f;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
  }
  
  .submit-button:hover {
    background-color: #026b2a;
  }
  
  .submit-button:active {
    transform: translateY(1px);
  }

  .spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-top: 3px solid #856404;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    margin-right: 10px;
  }
  .loading-message {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #856404;
  }
  
  /* Form messages */
  .form-message {
    margin-top: 20px;
    margin-bottom: 0;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    text-align: center;
    display: none;
    transition: opacity 0.3s ease;
  }
  
  .success-message {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
  }
  
  .error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
  }
  

  

  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Responsive styles */
  @media screen and (max-width: 600px) {
    .form-card {
      padding: 20px;
      box-shadow: none;
    }
    
    .quote-header h1 {
      font-size: 26px;
    }
    
    /* .quote-container {
      margin-top: 10px;
      padding: 15px;
    } */
  }

