.hw-form-wrapper {
    max-width: 760px;
    margin: 30px auto;
}

.hotwheels-car-form .hw-field {
    margin-bottom: 18px;
}

.hotwheels-car-form label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
}
.site-content
{
    background: #000;
}
.entry-title,
.form-section h4,
.hw-field label,
.hw-help
{
    color: white;
}




.hotwheels-car-form input[type="text"],
.hotwheels-car-form input[type="email"],
.hotwheels-car-form input[type="file"],
.hotwheels-car-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #cfcfcf;
    border-radius: 8px;
    box-sizing: border-box;
    background: #fff;
}

.hotwheels-car-form textarea {
    min-height: 140px;
    resize: vertical;
}



.hw-help {
    margin-top: 6px;
    font-size: 13px;
}

.hw-error-placeholder {
    color: #c62828;
    font-size: 14px;
    min-height: 20px;
    margin-top: 6px;
}

.hw-error-general {
    background: #fdeaea;
    color: #b71c1c;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.hw-success {
    background: #e8f7e8;
    color: #1b5e20;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.hw-checkbox-label {
    display: flex !important;
    gap: 10px;
    align-items: flex-start;
    font-weight: 400 !important;
}

.hw-checkbox-label input {
    margin-top: 4px;
    width: auto;
}


.hw-submit-btn
{
    background: #F8D000;
    color: black;
    position: relative;
    z-index: 1;
}
.hw-submit-btn:after
{
    content: "";
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: white;
    z-index: -1;
    transition: 1s width;
    top: 0px;
    left: 0px;
}

.hw-submit-btn:hover
{
    background-color: #F8D000;
    border-color: #F8D000;
    color: #000000;
}

.hw-submit-btn:hover:after{
    width: 100%;
}



.hw-field textarea,
.hw-field input {
    background-color: black!important;
    border: 2px solid #F8D000!important;
    border-radius: 15px 0px!important;
    box-shadow: -8px 8px #F8D000!important;
    color: white!important;
    transition: 1s box-shadow;
}
.hw-field textarea:hover,
.hw-field input:hover 
{
    box-shadow: 0px 0px #F8D000!important;

}
.input-panel
{
    border: 2px solid #F8D000;
    background: #00000066;
    padding: 10px 25px;
    margin-bottom: 20px;
}

.hw-field.has-error input,
.hw-field.has-error textarea {
    border-color: #c62828;
}




@media (max-width: 750px) {
    .hw-form-wrapper {
        margin: 20px auto;
    }

    .hotwheels-car-form input[type="text"],
    .hotwheels-car-form input[type="email"],
    .hotwheels-car-form input[type="file"],
    .hotwheels-car-form textarea {
        padding: 10px 12px;
    }

    .hw-submit-btn {
        width: 100%;
    }
}