#mcm-form {
    max-width: auto;
    margin-top: 12px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Gruppen */
.mcm-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

/* Labels */
#mcm-form label {
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* Inputs & Textarea */
#mcm-form input[type="text"],
#mcm-form input[type="email"],
#mcm-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
}

#mcm-form input:focus,
#mcm-form textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 5px rgba(76,175,80,0.3);
    outline: none;
}

#mcm-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Checkbox */
#mcm-form input[type="checkbox"] {
    width: auto;
    margin-right: 8px;
}

#mcm-form .mcm-consent {
    flex-direction: row;
    align-items: center;
    font-size: 13px;
}

/* Button */
#mcm-submit {
    background: #4CAF50;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, opacity 0.3s;
}

#mcm-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#mcm-submit:hover:not(:disabled) {
    background: #45a049;
}

/* Message */
#mcm-message-box {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
}

/* Mobile */
@media (max-width: 600px) {
    #mcm-form {
        padding: 20px;
    }
}
