body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    padding: 32px;
}

form {
    background: #fff;
    border-radius: 10px;
    max-width: 440px;
    margin: 0 auto;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    padding: 32px;
}

label {
    display: block;
    margin-top: 18px;
    font-weight: bold;
}

input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

textarea {
    min-height: 80px;
    resize: vertical;
}

button[type="submit"] {
    margin-top: 18px;
    background: #1976d2;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 4px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.18s;
}

button[type="submit"]:hover {
    background: #145ea8;
}

.hinweis {
    margin-top: 6px;
    min-height: 20px;
    font-size: 0.96em;
    color: #883a00;
    font-weight: bold;
}

.form-einleitung {
    background: #e6f2ff;
    border-left: 4px solid #1976d2;
    padding: 14px 18px;
    border-radius: 5px;
    margin-bottom: 22px;
    font-size: 1.06em;
}

.domain {
    color: #e57373;
    font-weight: bold;
    text-decoration: underline;
}

.adressnew {
    display: none !important;
}

/* Neue, besonders auffällige Bestätigungsbox */
.confirm-box {
    background: #f9f9f9;
    border: 2.5px solid #e57373;
    border-radius: 14px;
    margin: 30px 0 30px 0;
    padding: 28px 28px 24px 28px;
    box-shadow: 0 4px 18px rgba(229, 115, 115, 0.09);
}

.confirm-icon {
    font-size: 2.8em;
    color: #e57373;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 1.5px 0 #fff);
    text-shadow: 0 1.5px 0 #fff;
}

.confirm-content {
    display: flex;
    align-items: flex-start;
    gap: 26px;
}

.confirm-text {
    color: #000000;
    font-size: 1.07em;
    line-height: 1.6;
    font-weight: 500;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    margin-top: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    transform: scale(1.32);
    margin-right: 10px;
    accent-color: #e57373;
}

select {
    width: 100%;
    padding: 8px;
    margin-top: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    background: #fafcff;
}

.zeitraum-row {
    display: flex;
    gap: 18px;
    margin-bottom: 16px;
}

.zeitraum-col {
    flex: 1;
    min-width: 120px;
}

@media (max-width: 700px) {
    .zeitraum-row {
        flex-direction: column;
        gap: 0;
    }
    .zeitraum-col {
        margin-bottom: 10px;
    }
}

.success-message {
    background: #e6fbe7;
    border-left: 5px solid #38b000;
    color: #205023;
    border-radius: 7px;
    padding: 26px 22px;
    margin: 34px auto 0 auto;
    font-size: 1.16em;
    max-width: 500px;
    box-shadow: 0 2px 12px rgba(56,176,0,0.07);
}

.success-message strong {
    font-size: 1.2em;
    display: block;
    margin-bottom: 12px;
}

.success-message .hinweis {
    color: #2c5e35;
    font-weight: 500;
    margin-top: 12px;
}

