html {
    font-family: monospace;
    padding: 1em;
    text-align: center;
}

h1 {
    font-size: 30px;
}

.login {
    padding: 24px 28px;
}

.password {
    border: solid 1px #ccc;
    border-radius: 3px;
    box-shadow: 0 2px 3px 0 rgba(0,0,0,0.1);
    font-family: monospace;
    font-size: 16px;
    padding: 12px 14px;
    width: 25%;
}

.password:focus {
    border-color: limegreen;
    outline: none;
}

.button {
    background-color: green;
    border: none;
    border-radius: 3px;
    color: white;
    cursor: pointer;
    font-family: monospace;
    font-size: 16px;
    padding: 12px 14px;
}

.button:hover {
    background-color: limegreen;
}