button[type="submit"] {
    background-color: #14532d; /* Warna dasar */
    color: white; /* Teks */
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    transition: background-color 0.3s ease;
  }
  
  button[type="submit"]:hover {
    background-color: #046c4e; /* Warna hover */
  }
  
  button[type="submit"]:active {
    background-color: #14532d; /* Warna saat aktif */
  }
  