body {
    font-family: Arial, sans-serif;
    background-color: #282c34;
    color: #abb2bf;
    font-family:
        "Ubuntu Mono", "DejaVu Sans Mono", "Bitstream Vera Sans Mono", monospace;
    font-size: 14px; /* Standard terminal size is often 10pt-12pt, which is ~14px */
    line-height: 1.2;
}
.login-container {
    width: 300px;
    margin: auto;
    margin-top: 50px;
    padding: 12px 16px 8px;
    background-color: #3e4451;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
h1 {
    font-size: 35px;
    text-align: center;
    color: #abb2bf;
    margin-bottom: 20px;
    letter-spacing: 5px;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #abb2bf;
}
label::first-letter {
    color: #61afef;
}
input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: none;
    border-radius: 3px;
    background-color: #4b5263;
    color: #abb2bf;
    margin-bottom: 16px;
}
input[type="text"],
input[type="password"]:active {
    outline: none;
    background-color: #4b5263;
}
input[type="submit"] {
    background-color: #61afef;
    color: #282c34;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #5299d8;
}
input[type="submit"]:active {
    background-color: #4b5263;
    color: #abb2bf;
}
#error {
    color: #e06c75;
    margin-top: 16px;
    margin-bottom: 16px;
}
