body {
    background: rgb(19,19,19);
    margin: 0;
    scroll-behavior: smooth;
}

a {
    color: #82c835; transition: color 0.329s ease;
    text-decoration: none;
} a:hover {
    color: #97eb3e;
}

.login-block {
    user-select: none;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;

    background-color: rgba(39, 39, 39, 0.281);
    width: 72lvh;
    border-radius: 16px;

    margin-top: 9.5lvh;

    transform: translate(-50%, -50%);
    left: 50%; top: 43lvh;

    padding-left: 5px; padding-right: 5px;
    padding-bottom: 45px;
    
    transition: transform 0.322s ease-in-out;
}
.login-block.loading {
    animation: loading_animation 1s linear infinite;
    background-size: 200% 100%;
}
@media screen and (max-width: 500px) {
    .login-block {
        width: 48lvh;
    }
}

.login-block h1 {
    align-items: center;
    justify-content: center;
    text-align: center;

    color: #FFF;
    font-size: 46px;
    font-family: 'Roboto';
    font-weight: bold;

    margin: 0;
    margin-top: 7px;
}

.login-block span {
    color: #FFF;
    font-size: 22px;
    font-family: 'Roboto';
    font-weight: lighter;
    text-align: center;

    margin: 0;
} .login-block a {
    font-size: 22px;
}

.login-block-input {
    position: relative;

    width: 47vh; height: 32px;
    background-color: rgb(37, 37, 37);
    border-radius: 21px;

    top: 9px;

    color: white;
    font-size: 22px;
    font-family: 'Roboto';
    text-align: center;
    outline: none; border: none; box-sizing: border-box;

    transition: background-color 0.322s ease-in-out;
} .login-block-input:focus {
    background-color: rgb(43, 43, 43);
}

.login-block-input-enter {
    position: relative;

    width: 21vh; height: 32px;
    background-color: rgb(68, 68, 68);
    border-radius: 21px;

    top: 19px;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: width 0.219s ease-in-out;
}
.login-block-input-enter:hover {
    width: 24vh;
} 
.login-block-input-enter p {
    color: white;
    font-size: 2.6vh;
    font-family: 'Roboto';
    text-align: center;
}

.login-block-message {
    position: relative;

    width: 49vh; height: 0px;
    background-color: rgb(48, 48, 48);
    border-radius: 21px;

    top: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;
    font-size: 2.1vh;
    font-family: 'Roboto';
    text-align: center;
    
    transition: height 0.241s ease-in-out;
} .login-block-message.load {
    height: 21px;
}

@keyframes loading_animation {
    0% {
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.08) 100%);
        background-position: -100%;
    }
    50% {
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.08) 100%);
        background-position: 100%;
    }
    100% {
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.08) 100%);
        background-position: -100%;
    }
}

.end-of-site {
    position: absolute;
    bottom: 0;
}