
:root {
    --brand-primary-color: rgb(36, 60, 148); /* Easy primary colour change */
    --brand-secondary-color: rgb(212, 68, 51);
    --brand-highlight-color: rgb(190, 60, 148);
}

/* Base font size for extra small and small devices */
html {
    font-size: 10px; /* Default is 16px */
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
    html {
        font-size: 11px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    html {
        font-size: 14px; /* Bootstrap's default */
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    html {
        font-size: 16px;
    }
}

h1 {
    font-size: 3.0em;
    color: var(--brand-primary-color);
    font-weight: bold;
}

p {
    margin: 0 0 !important;
}

.btn-primary {
    background-color: var(--brand-primary-color);
    border-color: var(--brand-primary-color);
}

.header-banner {
    margin-bottom: 8px;
    margin-top: 8px !important;
}

.site-logo-image {
    width: 50%;
    min-width: 300px;
    max-width: 550px;
}

div .card-body ul {
    list-style-type: none;
    padding-left: 20px;
}

div .card-body ul li {
    margin-left: 20px;
}

.email-confirm-message {
    color: var(--brand-highlight-color);
    font-weight: bold;
    font-size: 1.2em;
}
