body {
    margin: 0;
    background: #000;
    color: white;
    /* font-family: inherit; */
    font-family: Fira Code, monospace;
    
    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;

    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none;   /* Chrome/Safari/Opera */
    -khtml-user-select: none;    /* Konqueror */
    -moz-user-select: none;      /* Firefox */
    -ms-user-select: none;       /* Internet Explorer/Edge */
    user-select: none;           /* Non-prefixed version, currently
                                    not supported by any browser */
}

.login-panel {
    width: min(360px, 90vw);
}

.text {
    color: white;
}

.login {
    font-weight: bolder;
}

label {
    display: block;
    margin-top: 18px;
    margin-bottom: 6px;
    font-size: 20px;

}

.input-row {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 20px;
}

.input {
    flex: 1;

    background: transparent;
    border: none;
    border-bottom: 1px solid white;

    color: white;
    font: inherit;
    outline: none;
}

.input::placeholder {
    color: #666;
}

.login-button {
    margin-top: 28px;

    background: none;
    border: none;

    /* color: burlywood; */
    color: burlywood;
    cursor: pointer;

    /* font: inherit; */
    font-size: 25px;

    padding: 0;
}

.login-button:hover,
.login-button:focus {
    text-decoration: underline;
}