html, body {
    margin: 0;
    width: 100%;
    height: 100%;
    font-family: "BebasNeue", sans-serif;
    overflow: hidden;
    background: rgb(46, 46, 46);
    display: flex;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

body#loginPage {
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

body#loginPage form {
    box-shadow: 0px 0px 4px 1px black;
    border-radius: 8px;
    padding: 50px;
}

body#loginPage form input {
    border: 1px solid black;
    padding: 8px;
    font-family: "BebasNeue", sans-serif;
    font-size: 1em;
    outline: none;
}

.loader {
    width: 3.75cqh;
    height: 3.75cqh;
    border: 0.391cqh solid #0084e9;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
}

.loader.fullloader {
    width: auto;
    height: 50%;
    aspect-ratio: 1 / 1;
    border-width: 0.781cqh;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}