/* Smartphone-optimiert, stabil, ohne Überlappung */

/* Grundlayout */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f0f0f0;
    font-size: 17px;
}

/* Container */
.container {
    width: 100%;
    padding: 15px;
    box-sizing: border-box;
}

/* Überschrift */
h2 {
    font-size: 22px;
    margin-bottom: 15px;
    text-align: center;
}

/* Labels */
label {
    font-weight: bold;
    display: block;
    margin-top: 12px;
    font-size: 16px;
}

/* Eingabefelder – EINHEITLICH */
input,
select,
textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 17px;
    box-sizing: border-box;
}

/* Zweispaltiges Layout */
.row {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.col {
    flex: 1 1 0;
    min-width: 0;
}

/* Button */
button {
    margin-top: 20px;
    width: 100%;
    padding: 14px;
    background: #0078d4;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
}

button:hover {
    background: #005fa3;
}

/* Bemerkung */
textarea {
    min-height: 70px;
}
.row input,
.row select {
    width: 100%;
}
.success-box {
    margin-top: 40px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.button-link {
    display: inline-block;
    padding: 14px 22px;
    background: #0078d4;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 17px;
}

.button-link:hover {
    background: #005fa3;
}
