/* Globaler Hintergrund im iOS‑Look */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: url("bild.png") no-repeat center center fixed;
    background-size: cover;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: #1c1c1e;
}

/* Halbtransparente iOS-Kartenoptik */
form {
    max-width: 420px;
    margin: 60px auto;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.65);
    border-radius: 22px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Titel */
h1 {
    text-align: center;
    margin-top: 40px;
    color: #ffffff;
    text-shadow: 0 3px 12px rgba(0,0,0,0.4);
    font-size: 32px;
}

/* Labels */
p {
    margin: 12px 0 6px;
    font-weight: 600;
    color: #1c1c1e;
}

/* Eingabefelder */
input[type="text"], select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid #d1d1d6;
    background: rgba(255,255,255,0.85);
    font-size: 16px;
    transition: all 0.25s ease;
    box-sizing: border-box;
}

/* Fokus-Effekt wie in iOS */
input[type="text"]:focus, select:focus {
    outline: none;
    border-color: #0a84ff;
    box-shadow: 0 0 0 3px rgba(10,132,255,0.25);
}

/* iOS-Button */
input[type="submit"] {
    width: 100%;
    margin-top: 20px;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #0a84ff, #5ac8fa);
    color: white;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

/* Button Hover */
input[type="submit"]:hover {
    background: linear-gradient(135deg, #007aff, #34c759);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

/* Button Active */
input[type="submit"]:active {
    transform: scale(0.98);
}
