/* Grundlayout */
form {
    max-width: 700px;
    margin: 20px auto;
    padding: 25px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 24px;
    text-align: center;
}

form label {
    display: block;
    margin: 12px 0 4px;
    font-weight: bold;
}

form input, form select, form textarea, form button {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    box-sizing: border-box;
}

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

form button {
    background-color: #4CAF50;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

form button:hover {
    background-color: #45a049;
}

#auditFeedback, #consultFeedback {
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
}
