:root {
    --max-width : 1150px;
}

* {
    font-family: "Baloo Paaji 2", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.3;
    color: #000B20;
}

body {
    margin: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

body.no-scroll {
    position: fixed;
    overflow: hidden;
    width: 100%;
}

h2 {
    margin: 0;
}

#content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.page {
    padding: 10px;
    width: calc(100% - 20px);
    max-width: var(--max-width);
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page > .content-page {
    padding: 15px;
}

.page h1 {
    border-bottom: 1px solid #F5F5F5;
    padding-bottom: 10px;
}

.page #titlePage {
    border-bottom: 1px solid #F5F5F5;
    padding: 0 10px;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page #titlePage h1 {
    border: none;
    padding: 0;
}

.page #titlePage i {
    font-size: 25px;
    color: #000B20;
}

/* CAPTCHA BADGE */
.grecaptcha-badge {
    z-index: 1;
}

/* HTMX LOADER */

.htmx-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: block;
    margin:15px auto;
    position: fixed;
    bottom: 15px;
    left: 50px;
    background: #A4A4A4;
    box-shadow: -24px 0 #A4A4A4, 24px 0 #A4A4A4;
    box-sizing: border-box;
    animation: shadowPulse 1s linear infinite;
}

@keyframes shadowPulse {
    33% {
        background: #A4A4A4;
        box-shadow: -24px 0 #75151E, 24px 0 #A4A4A4;
    }
    66% {
        background: #75151E;
        box-shadow: -24px 0 #A4A4A4, 24px 0 #A4A4A4;
    }
    100% {
        background: #A4A4A4;
        box-shadow: -24px 0 #A4A4A4, 24px 0 #75151E;
    }
}

@media (max-width: 576px) {

    .page #titlePage {
        display: block;
    }

    .page #titlePage a {
        margin-top: 10px;
        padding: 10px;
        background-color: #75151E;
        border: 1px solid #75151E;
        border-radius: 5px;
        display: flex;
        justify-content: center;
        cursor: pointer;
    }

    .page #titlePage a i {
        color: white;
    }

    .page #titlePage a:hover {
        background-color: #82151e;
        border-color: #82151e;
    }
}

@media (max-width: 992px) {
    .page > .content-page {
        padding: 15px 0;
    }
}