/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* Hintergrund */
body {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 30px;
}

.header-image {
  width: 300px;
  margin-bottom: 28px;
}

header h1 {
  font-size: 20px;
  color: #F28C00; /* OBI Orange */
  margin-bottom: 5px;
  font-weight: 700;
}

/* Formular-Container */
form {
  background: #fff;
  padding: 30px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  max-width: 500px;
  width: 100%;
  transition: transform 0.2s ease;
  border: 2px solid #F28C00; /* OBI Orange */
}

form:hover {
  transform: translateY(-2px);
}

/* Labels */
label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #4A4A4A; /* dunkles Grau */
  font-size: 14px;
}

/* Inputs und Selects */
input[type="number"],
select,
input[type="text"] {
  width: 100%;
  padding: 10px 14px;
  margin-bottom: 18px;
  border: 1px solid #d1d1d1;
  border-radius: 10px;
  background: #f9f9f9;
  transition: all 0.3s ease;
  font-size: 14px;
}

input:focus,
select:focus {
  border-color: #F28C00;
  background: #fff;
  box-shadow: 0 0 6px rgba(242, 140, 0, 0.4);
  outline: none;
}

/* Zaunlänge + Ecken nebeneinander */
.zaun-form {
  display: flex;
