.validate select:invalid,
.validate input:invalid {
    border: 3px solid red
}
.label.warning{
    background: #ff9800;
    font-weight: normal;
    font-size: 14px;
    padding: 17px 10px;
    width: 100%;
    text-align: left;
}


input[type="checkbox"], input[type="radio"]  
{
    
    width: 25px !important;
    height: 25px !important;
    border: 2px solid grey;
    margin-left: 5px !important;

}

input[type="checkbox"]::before, input[type="radio"]::before {
    content: "";
    width: 23px;
    height: 23px;
    transform: scale(0);
    transition: 120ms transform ease-in-out;
    background-color: CanvasText;
    background: var(--field-check-color);
    border: none;
}
