html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

div.formField {
    position: relative;
    justify-content: center;
    grid-gap: 5px;
    margin-bottom: 2%;
    text-align: left;
    max-width: 60%;
    margin: auto;
}

.formGroup {
    clear: both;
    margin-top: 2%;
}

.control-label {
    position: relative;
    text-align: left;
    max-width: 95%;
}

.control-label:after {
    content: ":"
}

.required {
    font-weight: bold;
}

.required:after {
        content: "*";
        font-weight: bold;
        color: red;
    }
