/* KONTER MVP – Minimales Styling */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #f5f5f5;
  margin: 0;
  padding: 0;
}

main {
  max-width: 600px;
  margin: 2rem auto;
  padding: 0 1rem;
}

article {
  background: #fff;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 1.5rem;
  margin-top: 0;
}

label {
  display: block;
  margin-top: 1.25rem;
  font-weight: 600;
}

input[type="text"],
textarea {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  margin-top: 0.25rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

button[type="submit"] {
  margin-top: 1.5rem;
  padding: 0.65rem 1.5rem;
  background: #2563eb;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
}

button[type="submit"]:hover {
  background: #1d4ed8;
}

.errors {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: 4px;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
}

.errors ul {
  margin: 0;
  padding-left: 1.25rem;
}

.errors li {
  color: #b91c1c;
}

.success {
  text-align: center;
}

.success a {
  display: inline-block;
  margin-top: 1rem;
  color: #2563eb;
}
