﻿.colorBlack {
    color: #0D121C;
}

.colorBGBlack {
    background: #0D121C;
}

.colorGray {
    color: #F3F3F3;
}

.colorBGGray {
    background: #F3F3F3;
}

.colorGreen {
    color: #16A34A;
}

.colorBGGreen {
    background: #16A34A;
}

.colorGreenLight {
    color: #F0FDF4;
}

.colorBGGreenLight {
    background-color: #F0FDF4;
}

.colorDarkGray {
    color: #414A5C;
}

.colorDarkGrayBG {
    background: #414A5C;
}

.colorWhite {
    color: white;
}

.colorBGWhite {
    background-color: white;
}

.colorRed {
    color: #a31616;
}

.customInputField:focus {
    box-shadow: rgba(34, 120, 39, 0.25) 0px 0px 0px 0.25rem;
    border-color: rgb(53, 166, 75);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    transition: background-color 5000s ease-in-out 0s;
    -webkit-text-fill-color: inherit; /* Inherit the text color */
}

.customPrimaryLink {
    text-decoration: none;
    -webkit-transition: color 300ms ease;
    transition: color 300ms ease;
}

.customPrimaryLink:hover {
    color: #16A34A;
}

.form-check-input:checked {
    background-color: rgb(53, 166, 75);
    border-color: rgb(53, 166, 75);
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(34, 120, 39, 0.25);
}