.kontakt-formular {
  max-width: 600px;
  margin: 2rem auto;
  background-color: #111;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.1);
  color: #eee;
}

.kontakt-formular label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: #ddd;
}

.kontakt-formular input[type="text"],
.kontakt-formular input[type="email"],
.kontakt-formular textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  border: 1px solid #444;
  border-radius: 6px;
  background-color: #1c1c1c;
  color: #f0f0f0;
  font-size: 1rem;
}

.kontakt-formular textarea {
  resize: vertical;
}

.kontakt-formular button {
  background-color: #a2881c; /* Goldton */
  color: #fff;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.kontakt-formular button:hover {
  background-color: #c7a622;
}

.kontakt-formular input:focus,
.kontakt-formular textarea:focus {
  outline: none;
  border-color: #5f27cd; /* Lila */
  box-shadow: 0 0 0 2px rgba(95, 39, 205, 0.3);
}

main h1 {
  text-align: center;
  font-size: 2.2rem;
  color: #ffd700; /* Optional: Gold */
  margin-bottom: 1rem;
}

.kontakt-formular p,
main .container > p {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #ccc;
  line-height: 1.6;
}