body {
    background-color: black;
    color: white;
}

.content {
    min-height: calc(100vh - 244px);
    display: flex;
    align-items: center;
}

.login-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.content img {
    width: 300px;
    max-width: 80vw;
    margin-bottom: 30px;
}

label {
    font-size: 20px;
}

input {
    font-size: 18px;
    width: 400px;
    max-width: 90vw;
    padding: 5px 10px;
    border: none;
    border-radius: 10px;
}

input[type=submit] {
    width: auto;
}