.wpforms-field-label {
    display: block !important;
    font-weight: bold;
    margin-bottom: 5px;
    color: #ffffff !important;
}

.wpforms-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 30px auto;
}

.wpforms-field input, 
.wpforms-field textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.wpforms-submit {
    background-color: #0073aa;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.wpforms-submit:hover {
    background-color: #005a87;
}

