
.required::before {
    content: "* ";
    color: red;
    font-weight: bold;
}

label.consent::before {
    content: "**";
}

.fetch-form {
    max-width: 700px;
    margin: 0 auto;
    padding: 25px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    font-family: Arial, sans-serif;
}
.fetch-form h2 {
    text-align: center;
    margin-bottom: 20px;
}
.fetch-form label {
    display: block;
    margin-bottom: 12px;
    font-weight: bold;
}
.fetch-form input[type="text"],
.fetch-form input[type="email"],
.fetch-form input[type="url"],
.fetch-form input[type="number"],
.fetch-form input[type="file"],
.fetch-form textarea {
    width: 100%;
    padding: 8px;
    margin-top: 4px;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.fetch-form textarea {
    height: 80px;
}
.fetch-form button {
    background-color: #007cba;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
.fetch-form button:hover {
    background-color: #005a87;
}
.fetch-form .consent {
    font-size: 14px;
}
