.form_message_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}



.wm-event-form {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
    max-width: 400px;
    width: 100%;
}

.wm-event-form h3 {
    text-align: center;
    margin-bottom: 24px;
    color: #1f2937;
}

.wm-event-form label {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-weight: 600;
}

.wm-event-form input[type="text"],
.wm-event-form input[type="email"],
.wm-event-forminput[type="radio"],
.wm-event-form textarea {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 14px;
    box-sizing: border-box;
}

.wm-event-form input[type="radio"] {
    width: auto;
    margin-right: 8px;
}

.wm-event-form .radio-wrapper {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.wm-event-form button {
    width: 100%;
    padding: 12px;
    background: #2563eb;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.wm-event-form button:hover {
    background: #1e40af;
}
.wm-event-form .custom-radio {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
    user-select: none;
}

.wm-event-form .custom-radio small {
    font-weight:normal;
    margin-left:5px
}

.wm-event-form .custom-radio input[type="radio"] {
    display: none;
}

.wm-event-form .checkmark {
    height: 20px;
    width: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
}

.wm-event-form .custom-radio input[type="radio"]:checked + .checkmark::after {
    content: "✓";
    position: absolute;
    left: 3px;
    top: 0px;
    font-size: 16px;
    color: #2563eb;
}

.custom-radio.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    text-decoration:line-through;
}

.custom-radio.disabled .checkmark {
    border-color: #ccc;
}

.dsgvo {
    margin-bottom:20px
}
.dsgvo p {
    font-size:12px
}

.form_message {
    text-align:center;
    background-color: white;
    width:400px;
    display: inline-block;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    font-size: 1.5em;
}
.form_message h3 {
    margin:15px 0;
}
.form_message p {
    margin:0 0 15px 0;
}
.form_message img {
    width:100px;
}
.form_message a.btn {
    color: #707070;
    border: 1px solid #f2f2f2;
    padding: 15px 40px;
    border-radius: 5px;
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px #E9E9E9;
    box-shadow: 0px 0px 5px 0px #E9E9E9;
    line-height: 1;
    text-decoration:none;
    font-size:16px;
    display:inline-block;
    margin-top:20px;
}