body {
    background: linear-gradient(to bottom left, gray, #333);
    overflow-y: hidden;
}

.login-container {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.login-form {
    font-family: verdana;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #555555;
    position: relative;
}


.login-form * {
    font-size: 16px;
    text-align: center;
}

.login-row {
    width: 300px;
    display: flex;
    flex-direction: row;
    background-color: white;
    margin: 10px;
    border-radius: 6px;
    gap: 20px;
}

.login-text-input, .login-button {
    padding: 10px;
    border-radius: 6px;
    outline: none;
    appearance: none;
    background-color: white;
    background-image: none;
    border: none;
    color: #555555;
}

.login-text-input {
    width: 100%;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: #555555;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

.login-button {
    font-family: verdana;
    padding: 10px;
    margin: 10px;
    border-radius: 6px;
}

.login-button:hover {
    cursor: pointer;
}

.login-row, .login-button {
    box-shadow: 0 0 6px #333;
}

.error {
    position: absolute;
    bottom: -60px;
    color: #f44;
    animation: error-blinking linear 1s 10;
}

@keyframes error-blinking {
    50% {
        color: white;
    }
}