.form-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #4CAF4F;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    font-weight: bold;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }

  .form-message.error {
    background-color: #f44336;
  }
  .description {
    text-align: center;
    margin: 20px 0;
    font-size: 20px;
  }
  .container {
    max-width: 1200px;
    margin: 20px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
  }
  h1 {
    font-size: 24px;
    color: #4CAF4F;
    margin-top: 20px;
    text-align: center;
  }
  label {
    font-weight: bold;
    display: block;
    margin-top: 10px;
  }

  form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 90% !important;
    max-width: 1200px;
  }
  .form-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  .form-group div {
    flex: 1;
    min-width: 300px;
  }
  select {
    width: 80%;
    padding: 15px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #F0F0F0;
  }
  input:not([type="checkbox"]), select, textarea {
    width: 80%;
    padding: 15px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #F0F0F0;
  }

  .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
  }
  .checkbox-label input[type="checkbox"] {
    width: auto;
    padding: 0;
    margin-right: 8px;
    transform: scale(1.2);
    accent-color: #4CAF4F;
  }
  .info-text {
    background-color: #f8f8f8;
    padding: 10px;
    border-left: 4px solid #4CAF4F;
    margin-top: 15px;
  }
  .file-upload {
    border: 2px dashed #4CAF4F;
    padding: 20px;
    text-align: center;
    margin-top: 10px;
    cursor: pointer;
    border-radius: 5px;
  }
  .file-upload:hover {
    background-color: #f9f9f9;
  }
  .consent {
    display: flex;
    align-items: center;
    margin-top: 15px;
  }
  .consent input {
    width: auto;
    margin-right: 10px;
  }
  .header3 {
    background-color: #4CAF4F;
    color: white;
    font-size: 22px;
    padding: 1px;
    text-align: center;
  }
  .form-footer {
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
  }
  button {
    background-color: #4CAF4F;
    color: white;
    padding: 15px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    border-radius: 10px;
  }
  button:hover {
    background-color: #79C37B;
  }