.error-msg
{
    color:red;
}

.required-msg
{
    color:red !important;
}

.red-text 
{
    color:red !important;
}

.green-text 
{
    color: green !important
}

.custom-checkbox {
    position: relative;
}

.custom-checkbox::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 15px;
    height: 15px;
    background-color: #ccc;
    border-radius: 3px;
}

.custom-checkbox input:checked + ::before {
    background-color: green;
}
