<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

.form-container{
    display: flex;
    flex-direction: column;
    padding-top: 0px;
}

.form{
    display: flex;
    flex-direction: column;
}

label::after{
    content: " *";
    color: red;
}

.message{
    width: 100%;
    height: 80px;
    background-color: #FF000055;
    border-radius: 10px;
    color: #AA0000;
    display: none;
    align-items: center;
    justify-content: center;
}

.names-container{
    display: flex;
    flex-direction: row;
}

.name-container{
    display: flex;
    flex-direction: column;
}

.register-button{
    height: auto;
    background: #00FF00;
    padding: 5px;
    border: none;
    outline: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: bold;
}

.register-button:hover{
    cursor: pointer;
    background-color: #00EE00;
}

.form-footer{
    font-family: consolas;
    font-weight: bold;
}

.forgot-password{
    padding: 5px;
    background-color: #EEEEEE;
    color: #000000;
    font-weight: bold;
    border: solid;
    border-color: black;
    border-width: 1px;
    border-radius: 2px;
}

.forgot-password:hover{
    background-color: #DDDDDD;
}

.form-footer a{
    display: inline;
    color: black;
    text-decoration: none;
}

.user-exists-view{
    display: flex;
    flex-direction: column;
    font-family: consolas;
    box-shadow: 0px 0px 0px 1px #FF0000;
    padding: 100px;
    align-items: center;
    margin-top: 20px;
}

.user-exists-view button{
    height: 30px;
    background: linear-gradient(10deg, #0000FF, #00AAFF 50%);
    color: white;
    text-shadow: 10px;
    border: none;
    outline: none;
    padding: 5px;
    font-weight: bold;
    font-size: 18px;
    border-radius: 5px;
    margin-top: 10px;
}

.login-button{
    width: auto;
    height: auto;
    background-color: #000000;
    color: white;
    font-family: 'Courier New';
    font-weight: bold;
    font-size: 15px;
    border: none;
    outline: none;
    padding: 10px;
    margin-top: 10px;
}


.logging-in-indicator{
    background-image: url('');
    background-size: 50px;
    display: inline-block;
}


.password-reset-window-container{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #555A;
    display: none;
    justify-content: center;
    align-items: center;
}

.password-reset-window{
    width: auto;
    height: auto;
    margin: 50px;
    background-color: white;
    padding: 10px;
}

.close{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row-reverse;
}

.input-container{
    display: flex;
    flex-direction: column;
}

.send-code{
    background-color: #00AAFF;
    color: white;
    border: none;
    outline: none;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
}

.password-change-form-container input{
    margin-top: 10px;
}


@keyframes stretch{
    from{
        padding: 0px 10px 0px 10px;
        border-radius: 5px;
    }

    to{
        padding: 0px 50px 0px 50px;
        border-radius: 20px;
    }
}

@keyframes collapse{
    from{
        width: 100%;
    }
    to{
        width: 20%;
    }
}

.user-exists-view button:hover{
    animation-name: stretch;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.error{
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 710px) {
    .form-container{
        width: auto;
        height: auto;
        padding: 50px 0px 0px 0px;
        margin: auto;
    }
}

@media screen and (max-width: 370px) {
    .names-container{
        flex-direction: column;
    }

    .name-container{
        margin: 0px;
    }

    .user-exists-view{
        padding: 20px;
    }
}</pre></body></html>