#hvfs-feedback-form-wrapper {
    max-width: 700px;
    margin: 20px auto;
    padding: 25px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.hvfs-form-field {
    margin-bottom: 20px;
}

.hvfs-form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.hvfs-form-field .required {
    color: #d9534f;
}

.hvfs-form-field input[type="text"],
.hvfs-form-field input[type="tel"],
.hvfs-form-field input[type="email"],
.hvfs-form-field input[type="datetime-local"],
.hvfs-form-field select,
.hvfs-form-field textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.hvfs-form-field input:focus,
.hvfs-form-field select:focus,
.hvfs-form-field textarea:focus {
    border-color: #0073aa;
    outline: none;
}

#hvfs-submit-button {
    width: 100%;
    padding: 15px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

#hvfs-submit-button:hover {
    background-color: #005a87;
}

#hvfs-submit-button:disabled {
    background-color: #a0a5aa;
    cursor: not-allowed;
}

/* Estilos de Resposta */
#hvfs-form-response {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    display: none;
    text-align: center;
}
#hvfs-form-response.success {
    background-color: #dff0d8;
    color: #3c763d;
    border: 1px solid #d6e9c6;
}
#hvfs-form-response.error {
    background-color: #f2dede;
    color: #a94442;
    border: 1px solid #ebccd1;
}

/* Responsividade */
@media (max-width: 600px) {
    #hvfs-feedback-form-wrapper {
        padding: 15px;
    }
}