body {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    margin-top: -100px;

    background-color: var(--primary-color);

    font-family: monospace;
}

img {
    width: 250px;
    height: 250px;

    filter: opacity(0.8);
}

@keyframes loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.login-status {
    width: 300px;
    height: 50px;

    border-radius: 5px;

    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

@keyframes vanish {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

form {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    margin-top: 20px;
}

input {
    width: 300px;
    height: 50px;

    border-radius: 5px;

    font-size: 25px;
    font-weight: 600;
    text-align: center;

    margin: 0px;

    background-color: var(--tertiary-color);
    border: solid 2px var(--secondary-color);
    color: #e4e4e4;
}

input.submit {
    color: #e4e4e4;
    background-color: var(--primary-color);
    cursor: pointer;

    border: solid 2px var(--secondary-color);

    transition: all .2s ease-in-out;
}

input.submit:hover {
    background-color: #e4e4e4;
    color: var(--primary-color)
}

.disclaimer {
    position: absolute;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;

    top: 70%;

    color: #e4e4e4;
}