body {
  font-family: Arial, sans-serif;
  background: #f3f4f6;
  margin: 0;
}

.wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.panel {
  width: 900px;
  max-width: 95%;
}

.card {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);

  /* 5cm Abstand (ca. 200px) */
  padding: 200px;

  box-sizing: border-box;
}

h1 {
  margin: 0 0 40px;
  font-size: 32px;
  text-align: center;
}

label {
  display: block;
  margin-bottom: 25px;
  font-weight: 600;
}

input {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 16px;
  box-sizing: border-box;
}

button {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 10px;
  background: #2563eb;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s ease;
}

button:hover {
  background: #1e40af;
}

.hint {
  margin-top: 20px;
  color: #6b7280;
  font-size: 14px;
  text-align: center;
}

.field {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #e5e7eb;
}

.field .label {
  color: #6b7280;
}

.field .value {
  font-weight: 600;
}

.hidden {
  display: none;
}
