body {
    margin: 0;
    background-color: #1B2030;
    color: #EDEDF9;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 12px;
}

div#login-form-container {
    margin: 1em;
    padding: 1em;
}

input[type=text],[type=password] {
    width: 100%;
    margin-bottom: 0.5em;
    padding: 1em;
    display: inline-block;
    border: 0;
    border-bottom: 1px solid #545E75;
    box-sizing: border-box;
    background-color: #1B2030;
    color: #EDEDF9;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 16px;
}

input[type=text],[type=password]:focus {
    outline: none;
}

button {
    width: 100%;
    padding: 1em;
    border: none;
    border-radius: 0.5em;
    box-sizing: border-box;
    background-color: #1c7c54;
    color: #ffffff;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

button:focus {
    outline: none;
}

button:hover {
    background-color: #046865;
    cursor: pointer;
}

@media screen and (min-width: 768px) {
    div#login-form-container {
        max-width: 50%;
    }
}