@font-face {
    font-family: 'Roboto';
    src: url('/authstatic/fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

html {
    font-size: 30px;
}

@media (min-width: 1200px) {
    html {
        font-size: 21px;
    }
}

@media (min-width: 1500px) {
    html {
        font-size: 16px;
    }
}

#id_login, #id_password, #auth_label, #auth_btn, #id_confirm_password {
    font-size: 1rem;
    margin-bottom:  auto;
}

#auth_btn {
    padding-left:  2rem;
    padding-right:  2rem;
}

body {
    font-family: 'Roboto', serif;
}

#sidebar {
    color: white;
    width: 320px;

    background-image: linear-gradient(to top, #25282B, #3178AC);
    padding-left: 0;
    padding-right: 0;
    /*height: 100vh;*/
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    overflow-y: auto;
    z-index: 6;
}

.main-content {
    position: absolute;
    top:0;
    left: 320px;
    width: calc(100% - 320px);
}

#sidebar-brand {
    font-size: 18px;
    padding-top: 20px;
    padding-bottom: 20px;
}


span, .forgot_password--admin_info {
    display: flex;
    padding-left: 15px;
    font-size: 21px;
    line-height: 40px;
    text-align: left;
    letter-spacing: .1rem;
}


#menu .nav-link {
    color: white;
}

#menu .submenu-nav-item {
    text-decoration: none;
    list-style-type: none;
}


#sidebar li {
    width: 100%;
}


#sidebar .nav-link:hover {
    background-color: #FFFFFF4D;

}

#submenu span {
    display: flex;
    padding-left: 45px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 20px;
}

#menu .nav-link.active {
    background: #158FE7;
}

@keyframes moveProgress {
    0% {
        transform: translateX(0) scaleX(0);
    }
    50% {
        transform: translateX(0) scaleX(0.5);
    }
    100% {
        transform: translateX(100%) scaleX(1);
    }
}


ul.errorlist {
    display: none;
}

.objects-table {
    text-align: center;
}

.objects-table th {
    position: sticky;
    top: 0;
    background-color: #fff;
}


label {
    display: flex;
    align-items: center;
}

.btn-whiten {
    --bs-btn-bg: white;
    border: 0;
}

.reauthenticate-description {

}