#pwgc-frontend-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
}

#pwgc-frontend-form p {
    margin-bottom: 15px;
}

#pwgc-frontend-form label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

#pwgc-frontend-form input,
#pwgc-frontend-form select,
#pwgc-frontend-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.datepicker-icon {
    font-size: 16px;
    cursor: pointer;
}

#pwgc-frontend-form input[type="submit"] {
    width: auto;
    background-color: #007cba;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

#pwgc-frontend-form input[type="submit"]:hover {
    background-color: #005a9c;
}

.datepicker-icon {
    font-size: 16px;
    cursor: pointer;
    margin-right: 8px;
}

#pwgc-frontend-form input[type="date"] {
    flex: 1;
}

