/* =========================================================
   Gartenparadies Heek – Mietformular
   ========================================================= */

.mieten-page {
    background: #f7faf5;
    color: #17351f;
}

.mieten-hero {
    color: #ffffff;
    padding: 72px 25px;
    text-align: center;
    background-size: cover;
    background-position: center;
}

.mieten-hero h1 {
    font-family: Georgia, serif;
    font-size: 46px;
    line-height: 1.15;
    margin: 0 0 15px;
    text-shadow: 2px 2px 8px rgba(0,0,0,.7);
}

.mieten-hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
    text-shadow: 1px 1px 6px rgba(0,0,0,.7);
}

.mieten-container {
    max-width: 920px;
    margin: 45px auto 70px;
    padding: 0 25px;
}

.mieten-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    padding: 12px 18px;
    background: #ffffff;
    color: #2f5d34;
    border: 2px solid #2f5d34;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: all .2s ease;
}

.mieten-back:hover {
    background: #2f5d34;
    color: #ffffff;
    transform: translateY(-2px);
}

.mieten-box {
    background: #ffffff;
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 14px 38px rgba(0,0,0,.08);
    border: 1px solid rgba(126, 163, 90, 0.16);
}

.mieten-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mieten-field {
    margin-bottom: 20px;
}

.mieten-field label,
.mieten-label {
    display: block;
    font-weight: 800;
    color: #2f5d34;
    margin-bottom: 8px;
}

.mieten-field input,
.mieten-field select,
.mieten-field textarea,
.mieten-box input,
.mieten-box select,
.mieten-box textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ccd8cc;
    border-radius: 12px;
    box-sizing: border-box;
    font-size: 15px;
    font-family: Arial, sans-serif;
    color: #17351f;
    background: #ffffff;
}

.mieten-field textarea,
.mieten-box textarea {
    min-height: 120px;
    resize: vertical;
}

.mieten-check {
    margin: 12px 0;
}

.mieten-check label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
    color: #304133;
}

.mieten-check input {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
}

.mieten-check a {
    color: #2f5d34;
    font-weight: 800;
}

.mieten-widerruf-box {
    background: #f7f9f3;
    border-left: 5px solid #7a9b42;
    padding: 18px 20px;
    border-radius: 14px;
    margin: 15px 0;
}

.mieten-widerruf-box strong {
    color: #2f5d34;
    display: block;
    margin-bottom: 6px;
}

.mieten-meldung {
    background: #dff2df;
    color: #245c24;
    padding: 15px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mieten-fehler {
    background: #f8dddd;
    color: #9b2525;
    padding: 15px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-weight: 700;
}

.mieten-testmodus-hinweis {
    background: #fff8df;
    color: #6f5200;
    border: 1px solid #efd27a;
    padding: 15px 18px;
    border-radius: 14px;
    margin-bottom: 20px;
    font-weight: 800;
}

.mieten-pflicht-hinweis {
    font-size: 14px;
    color: #5d675f;
    background: #ffffff;
    border-radius: 14px;
    padding: 15px 18px;
    border-left: 4px solid #9bb68d;
    margin-top: 22px;
    line-height: 1.6;
}

#mietButton {
    background: #bfc7bb;
    color: #ffffff;
    opacity: .65;
    cursor: not-allowed;
    transition: all .25s ease;
    border: 0;
    padding: 15px 26px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

#mietButton.aktiv {
    background: #2f5d34;
    opacity: 1;
    cursor: pointer;
}

#mietButton.aktiv:hover {
    background: #244828;
    transform: translateY(-2px);
}

@media (max-width: 750px) {
    .mieten-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .mieten-hero h1 {
        font-size: 34px;
    }

    .mieten-box {
        padding: 28px 22px;
    }

    #mietButton,
    .mieten-back {
        width: 100%;
        justify-content: center;
        box-sizing: border-box;
    }
}