* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: lawngreen;
    font-family: Monaco, monospace;
    transition: color .2s ease-in-out;
}
html {
    background: black;
}
body {
    display: flex;
    min-height: 100vh;
    padding: 64px;
}
.wrong-password * {
    color: red !important;
    pointer-events: none;
    border-color: red !important;
}
.wrong-password .login {
    border-color: red;
    animation: shake .7s .2s forwards;
}
.login {
    margin: auto;
    border: 1px dashed lawngreen;
    transition: border .2s ease-in-out;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    z-index: 2;
    position: relative;
}
@keyframes shake {
    0% {
        transform: translateX(0);
    }
    25% {
        transform: translateX(15px);
    }
    50% {
        transform: translateX(-15px);
    }
    75% {
        transform: translateX(15px);
    }
    100% {
        transform: translateX(0px);
    }
}
textarea {
    background: none;
    resize: none;
    width:270px;
    height: 100px;
    border: none;
    pointer-events: none;
    user-select: none;
    margin-bottom: 16px;
    overflow: hidden;
}
.input-field {
    background: none;
    border: none;
    outline: none;
    color: lawngreen;
    font-family: Monaco, monospace;
    padding: 5px 0 3px;
    width: 100px;
    height: 28px;
    caret-color: black;
    display: flex;
    vertical-align: bottom;
    border-bottom: 1px dashed lawngreen;
    transition: border .2s ease-in-out;
}

.input-field:focus::after {
    content: '';
    display: inline-block;
    width: 5px;
    height: 1em;
    background-color: #FFF;
    animation: rainbow-blink 1s steps(1) infinite;
    vertical-align: bottom;
    margin-top: 3px;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

@keyframes rainbow-blink {
    0% { background-color: red; opacity: 1; }
    16.6% { background-color: orange; }
    33.3% { background-color: yellow; }
    50% { background-color: green; opacity: 0; }
    66.6% { background-color: blue; }
    83.3% { background-color: indigo; }
    100% { background-color: violet; opacity: 1; }
}

table {
    tr td {
        padding: 4px 0;
        font-size: 14px;
    }
}

ol {
    list-style: none;
    gap: 4px;
    display: flex;
    flex-direction: column;

    li {
        a {
            text-decoration: none;
            position: relative;

            &::after {
                content: '';
                width: 110%;
                height: 50%;
                position: absolute;
                left: -5%;
                top: 50%;
                background: lawngreen;
                transition: opacity .2s ease-in-out;
                opacity: 0;
            }

            &:hover {
                /*text-decoration: underline;*/
                &::after {
                    opacity: .4;
                }
            }
        }
    }
}

/* width */
::-webkit-scrollbar {
    width: 2px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #333;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: lawngreen;
    border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: lawngreen;
}