

  .form-container {
    max-width: 800px;
    margin-left: 300px;
    margin-top: 60px;
    margin-bottom: 60px;
    background: #D8C4B6;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
  }

  h2, h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #004080;
  }

  .form-group {
    margin-bottom: 15px;
  }

  label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
  }

  input[type="text"],
  input[type="email"],
  input[type="date"],
  input[type="tel"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    background-color: #F5EFE7;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

  .gender-options label {
    display: inline-block;
    margin-right: 15px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 14px;
  }

  table th, table td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: center;
  }

  .checkbox-group label {
    margin-right: 15px;
  }

  .submit-btn {
    background: #3E5879;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 20px;
    display: block;
    width: 100%;
  }

  .submit-btn:hover {
    background-color: #213555;
  }

  @media (max-width: 768px) {
    .form-container {
        
      padding-top: 65px;
      margin: auto;
    }
  
    table,
    thead,
    tbody,
    th,
    td,
    tr {
      display: block;
      width: 100%;
    }
  
    table thead {
      display: none;
    }
  
    table tr {
      margin-bottom: 15px;
      border-bottom: 1px solid #ccc;
    }
  
    table td {
      text-align: left;
      padding-left: 50%;
      position: relative;
    }
  
    table td::before {
      position: absolute;
      top: 8px;
      left: 10px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      font-weight: bold;
      content: attr(data-label);
    }
  
    .gender-options label,
    .checkbox-group label {
      display: block;
      margin-bottom: 10px;
    }
  
    .submit-btn {
      font-size: 14px;
      padding: 10px;
    }
  }
  