.widerruf-main {
    max-width: 56.25rem;
    margin: 0 auto;
    padding: 8rem 1.25rem 3rem;
}

.widerruf-box {
    background: var(--bacgraund-linear-green);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.widerruf-box h1 {
    margin-bottom: 16px;
    font-size: 28px;
    color: var(--brand-dark);
}

.widerruf-intro {
    margin-bottom: 28px;
    color: #555;
    line-height: 1.6;
}

.widerruf-form .form-group {
    margin-bottom: 20px;
}

.widerruf-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.widerruf-form input,
.widerruf-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    box-sizing: border-box;
}

.widerruf-form input:focus,
.widerruf-form textarea:focus {
    outline: none;
    border-color: #111;
}

.widerruf-note {
    background: #f7f7f7;
    border-left: 4px solid var(--brand-dark);
    padding: 14px 16px;
    margin: 24px 0;
    border-radius: 8px;
    color: #444;
    font-size: 14px;
    line-height: 1.5;
}

.widerruf-actions {
    margin-top: 24px;
}

.widerruf-btn {
    background: #fff;
    color: #111;
    border: none;
    padding: 13px 24px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

#widerruf-btn{
    color: var(--brand);
}

.widerruf-btn:hover {
    background: var(--accent);
}


/*approved*/
.widerruf-success-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: #16a34a;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.widerruf-success-list {
    margin: 1.5rem 0;
    padding-left: 1.3rem;
    color: #444;
    line-height: 1.7;
}

.widerruf-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.widerruf-btn {
    text-decoration: none;
    display: inline-block;
}

.widerruf-btn-secondary {
    background: #f3f3f3;
    color: #222;
}

.widerruf-btn-secondary:hover {
    background: #e5e5e5;
    color: #111;
}


@media (max-width: 600px) {
    .widerruf-main {
        margin: 20px auto;

        padding: 8rem 1.25rem 3rem;
    }

    .widerruf-box {
        padding: 22px;
    }

    .widerruf-box h1 {
        font-size: 24px;
    }

    .widerruf-btn {
        width: 100%;
    }
}