.zammad-form button {
  border-radius: 1rem; /* rounded-2xl */
  padding: 0.5rem 1rem; /* py-2 px-4 */
  font-size: 0.875rem; /* text-sm */
  font-weight: 700; /* font-bold */
  backdrop-filter: blur(8px); /* backdrop-blur */
  background-color: rgba(255, 255, 255, 0.05); /* bg-white/5 */
  border: 1px solid rgba(255, 255, 255, 0.1); /* ring-1 ring-white/10 */
  color: white;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.zammad-form button:hover {
  background-color: rgba(255, 255, 255, 0.1); /* hover:bg-white/10 */
  transform: translateY(-1px);
}
