 /* daftar */
    body {
      font-family: 'Inter', sans-serif;
      margin: 0;
      padding: 0;
    }
    
    h1 {
      text-align: center;
      color: #228B22;
    }
    form {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }
    .full-width {
      grid-column: 1 / -1;
    }
    label {
      font-weight: bold;
      display: block;
      margin-bottom: 0.3rem;
    }
    input, select, textarea {
      width: 100%;
      padding: 0.8rem;
      border: 1px solid #ccc;
      border-radius: 8px;
    }
    button {
      padding: 1rem;
      background-color: #228B22;
      color: white;
      border: none;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }
    button:hover {
      background-color: #1a6d1a;
    }
    @media (max-width: 768px) {
      form {
        grid-template-columns: 1fr;
      }
    }
    