@font-face {
    font-family: 'brandon_black';
    src: url('../fonts/brandongrotesque_black-webfont.eot');
    src: url('../fonts/brandongrotesque_black-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/brandongrotesque_black-webfont.woff2') format('woff2'), url('../fonts/brandongrotesque_black-webfont.woff') format('woff'), url('../fonts/brandongrotesque_black-webfont.ttf') format('truetype'), url('../fonts/brandongrotesque_black-webfont.svg#brandon_grotesqueblack') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'brandon_bold';
    src: url('../fonts/brandongrotesque_bold-webfont.eot');
    src: url('../fonts/brandongrotesque_bold-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/brandongrotesque_bold-webfont.woff2') format('woff2'),
        url('../fonts/brandongrotesque_bold-webfont.woff') format('woff'),
        url('../fonts/brandongrotesque_bold-webfont.ttf') format('truetype'),
        url('../fonts/brandongrotesque_bold-webfont.svg#brandon_grotesquebold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'brandon_medium';
    src: url('../fonts/brandongrotesque_medium-webfont.eot');
    src: url('../fonts/brandongrotesque_medium-webfont.eot?#iefix') format('embedded-opentype'),
        url('../fonts/brandongrotesque_medium-webfont.woff2') format('woff2'),
        url('../fonts/brandongrotesque_medium-webfont.woff') format('woff'),
        url('../fonts/brandongrotesque_medium-webfont.ttf') format('truetype'),
        url('../fonts/brandongrotesque_medium-webfont.svg#brandon_grotesquemedium') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'brandon_regular';
    src: url('../fonts/brandongrotesque_regular-webfont.eot');
    src: url('../fonts/brandongrotesque_regular-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/brandongrotesque_regular-webfont.woff2') format('woff2'), url('../fonts/brandongrotesque_regular-webfont.woff') format('woff'), url('../fonts/brandongrotesque_regular-webfont.ttf') format('truetype'), url('../fonts/brandongrotesque_regular-webfont.svg#brandon_regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'brandon_light';
    src: url('../fonts/brandongrotesque_light-webfont.eot');
    src: url('../fonts/brandongrotesque_light-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/brandongrotesque_light-webfont.woff2') format('woff2'), url('../fonts/brandongrotesque_light-webfont.woff') format('woff'), url('../fonts/brandongrotesque_light-webfont.ttf') format('truetype'), url('../fonts/brandongrotesque_light-webfont.svg#brandon_grotesquelight') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
    font-family: brandon_regular;
}

.error{
    width: 100%;
    
    display: flex;
    gap: 10px;
    border:2px solid #ED252B;
    padding: 20px 30px 20px 30px;
    margin-bottom: 2rem;
}

.error svg{
    fill: #ED252B;
    color: #ED252B;
    width: 60px;
   
}

.error p{
    margin-bottom: 0px;
}

.navbar {
    background: #000;
}

.bg-dark {
    background-color: #000 !important;
}

.nav-item,
.nav-link {
    color: #fff !important;
}

.loginDiv {
    background: #fff;
    border-radius: 0px;
    min-height: 600px;
    width: 100%;
    margin-top: 4rem;
    padding: 38px 32px 32px;
    margin-bottom: 3rem;
    opacity: 0.85;
}

.loginDiv h1 {
    font-weight: 800;
    margin-bottom: 3rem;
}

.form-group {
    margin-bottom: 2rem;
}

label {
    font-weight: 700;
}

.loginDiv input {
    padding: 0.75rem;
    font-size: 20px;
    border-radius: 0px;
    border: 1.5px solid;
}

.remember_me {
    font-size: 13px;
}

.remember_me input {
    margin-inline-end: 0.55rem;
}

.disclaimer {
    font-size: 14px;
}

.loginBtn {
    border-radius: 0px;
    width: 100%;
    background: #ED252B;
    border: none;
    font-size: 20px;
    margin-top: 2rem;
}

.loginBtn:hover {
    background: #000;
}

.forgot {
    font-size: 16px;
    margin-top: 2rem;
}

.forgot a {
    text-decoration: underline;
    color: #ED252B;
}

footer {
    background: #000;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
}

footer p {
    color: #fff;
    margin-bottom: 0px;
}


.loader-container {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    position: fixed;
    z-index: 9999;
    top: 0;
}

.loader-DIV {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex-direction: column;
}


.loader-DIV p {
    color: #fff;
    font-size: 20px;
    z-index: 9999;
    margin-top: 3rem;
    text-transform: uppercase;
}

.loader-widget {
    width: 60px;
    height: 60px;
    border: 10px solid #FFF;
    border-radius: 50%;
    position: relative;
    transform: rotate(45deg);
    box-sizing: border-box;
}

.loader-widget::before {
    content: "";
    position: absolute;
    box-sizing: border-box;
    inset: -10px;
    border-radius: 50%;
    border: 10px solid #ED252B;
    animation: prixClipFix 2s infinite linear;
}


.passwordDiv{
    position: relative;
}

.revealer{
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
}

.revealer span{
        font-size: 1.2rem;
}

.rememberMeDIV{
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.rememberMeDIV #rememberMe{
    width: 1em;
    height: 1em;
    /*margin-top: .25em;
    vertical-align: top;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;*/
    border: 1px solid #ED252B;
    margin-right: 5px;
    border-radius: 0px;
}

@keyframes prixClipFix {
    0% {
        clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0)
    }

    25% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0)
    }

    50% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%)
    }

    75% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%)
    }

    100% {
        clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0)
    }
}

.img-white{
        filter: brightness(0) invert(1);
}


@media only screen and (max-width: 769px) {
    .menu {
        display: none;
    }

    .navbar .justify-content-between {
        justify-content: center !important;
    }
}