html, body {
    margin: 0px;
    background-color: #141414;
    color: #d0d0d0;
    font-family: sans-serif;
}

.main-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.main {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.logo {
    text-align: center;
    font-size: 8vmin;
    font-weight: bold;
}

span.lem0nify {
    color: #fff8b7;
}

span.TV {
    color: #ffaeae;
}

form#login-form {
    /* background-color: red; */
    display: flex;
    flex-direction: column;
    gap: 30px;
}

form#login-form input[type="submit"] {
    margin-top: 20px;
}

input {
    font-size: 1.5rem;
    border-radius: 18px;
    border: 1px solid #646464;
    padding: 5px;
    color: #d0d0d0;
}

input[type="text"], input[type="password"] {
    background: linear-gradient(#292929, #3d3d3d);
    text-align: center;
}

input[type="text"]:focus, input[type="password"]:focus {
    outline: 0;
    border: 1px solid #9b9b9b;
}

input[type="submit"] {
    background: linear-gradient(#585858, #424242);
    font-weight: bold;
}

input[type="submit"]:active {
    background: linear-gradient(#424242, #585858);
}

.error-field {
    color: red;
    height: 4rem;
    text-align: center;
}
