   html, body {
      margin: 0;
      padding: 0;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
      color: #333;
    }

    .image-container {
      width: 100%;
      height: 30vh;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }

    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .content {
      max-width: 1300px;
      margin: 0 auto;
      padding: 30px 20px;
      position: absolute;
      top: 30vh;
      left: 0;
      right: 0;
      z-index: 2;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
    }

    .content h1 {
      font-size: 2em;
      color: #005792;
      margin-bottom: 56px;
      text-align: center;
    }

    .content h2 {
      font-size: 1.4em;
      color: #005792;
      margin-top: 30px;
      margin-bottom: 10px;
    }

    form {
      margin-top: 20px;
    }

    label {
      display: block;
      margin-top: 15px;
      font-weight: bold;
    }

    .name-fields {
      display: flex;
      gap: 15px;
      margin-top: 15px;
    }

    .name-fields .field-group {
      flex: 1;
    }

    .field-group label {
      font-weight: bold;
      display: block;
      margin-bottom: 5px;
    }

    .field-group input, .field-group select {
      width: 100%;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
    }


    @media (max-width: 768px) {
      .image-container {
        height: 40vh;
      }

      .name-fields {
        flex-direction: column;
      }
    }

    @media (max-width: 480px) {
      .image-container {
        height: 50vh;
      }

      .content h1 {
        font-size: 1.5em;
      }
       .content h2 {
        font-size: 1.2em;
      }
    }



    .add-row-btn, .delete-row-btn {
    background-color: #005792;
    color: #fff;
    padding: 6px 14px;
    font-size: 14px;
    border: 2px solid #005792;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(0, 87, 146, 0.5);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
  }

  .add-row-btn:hover, .delete-row-btn:hover {
    background-color: #004370;
    box-shadow: 0 0 8px rgba(0, 87, 146, 0.7);
  }

  .delete-row-btn i {
    pointer-events: none;
  }

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

  input, textarea , select{
    width: 100%;
    padding: 8px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
  }

  input:focus, textarea:focus , select:focus {
    border-color: #005792;
    box-shadow: 0 0 5px rgba(0, 87, 146, 0.5);
    outline: none;
  }

   .register-button {
  display: inline-block;
  background-color: #005792;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.register-button:hover {
  background-color: #003f63;
  color: white;
  font-weight: 500;
  text-decoration: none;
  transform: scale(1.05);
}

/* Disabled button styles */
.register-button:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  transform: none;
  opacity: 0.7;
}

.register-button:disabled:hover {
  background-color: #cccccc;
  transform: none;
}

/* Loading spinner styles */
.fa-spinner {
  margin-right: 8px;
}

/* Form submission feedback */
.form-submitting {
  pointer-events: none;
  opacity: 0.8;
}

/* Success and error message styles */
.success-message {
  color: #28a745;
  font-weight: bold;
}

.error-message {
  color: #dc3545;
  font-weight: bold;
}
