::selection {
	background: var(--color);
	color: #fff;
}

::-webkit-scrollbar {
	width: 7px;
	height: 7px;
}

::-webkit-scrollbar-button {
	width: 10px;
	height: 0px;
}

::-webkit-scrollbar-thumb {
	background: var(--color);
}

::-webkit-scrollbar-thumb:hover {
	background: var(--color-dark);
}

::-webkit-scrollbar-thumb:active {
	background: var(--color-light);
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-corner {
	background: transparent;
}

img {
	max-width: 100%;
	object-fit: contain;
	object-position: center;
	max-height: auto;
}

.clearfix:before,
.clearfix:after {
	content: "";
	display: table;
}

.clearfix:after {
	clear: both;
}

.clearfix {
	*zoom: 1;
}

html,
body {
	margin: 0;
	padding: 0;
	font-size: 16px;
	line-height: 1.3em;
	background-color: var(--bg-color);
    background-image: url('../images/bg-sistema.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	color: var(--f-color);
	box-sizing: border-box;
	overflow-x: hidden;
	width: 100vw;
	outline: none;
    font-family: "Noto Sans", "Roboto", "Open Sans", "Helvetica", "Arial", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    min-height: 100vh;
    position: relative;
}

body * {
	box-sizing: border-box;
	transition: 0.3s all;
}
.t-center {
    text-align: center;
}
h1 {
    margin: 0;
    line-height: 1.25em;
    font-size: 1.5em;
    color: var(--color);
    margin-bottom: 10px;
}
p {
    margin: 0;
    line-height: 1.25em;
    font-size: 1em;
    color: var(--f-color);
    margin-bottom: 15px;
}
small {
    font-size: 0.65em;
}

.loading {
    pointer-events: none;
    overflow: hidden;
}
.loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.434);
    z-index: 9999;
    backdrop-filter: blur(10px);
}
.loading::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 2px solid var(--color);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    z-index: 10000;
}
@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.logo {
    background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 15px 30px 50px 30px;
    backdrop-filter: blur(10px);
}
.logo img {
    width: 100%;
    max-width: 120px;
}
#login-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff53;
    width: 100%;
    max-width: 380px;
    border: 1px solid #ffffffb9;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px 0 #00000052;
    overflow: hidden;
}
#login-container .card {
    padding: 30px;
}
#login-container input {
    padding: 15px;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    border: 0;
    border-radius: 8px;
}
#login-container input::placeholder {
    color: var(--f-color);
    opacity: 1;
}
#login-container button {
    padding: 15px;
    width: 100%;
    display: block;
    border: 0;
    border-radius: 8px;
    background-color: var(--color);
    color: #fff;
    font-size: 1em;
    cursor: pointer;
    margin-top: 10px;
}
#login-container button:hover {
    background-color: var(--color-dark);
}
#footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    color: var(--f-color);
    background: linear-gradient(0deg, var(--color) 0%, rgba(255, 255, 255, 0) 100%);
    color: #fff;
    padding: 40px 0 0 0;
}
#footer * {
    color: #fff;
}