html {
    background: #ebebe7;
}

header {
    border-top: 3px solid #87DE87;
    background: #37C837;
    padding: 3px;
    color: white;
}

header a {
    color: white;
    text-decoration: none;
}

header a:active {
    color: white;
    text-decoration: overline;
}


form.login {
    border: 1px solid black;
    width: 500px;
    margin: 5px auto;
    border-radius: 4px;
    padding: 5px;
    background-color: white;
}

form div.form-row {
    padding: 3px;
}

form div.form-row label {
    display: flex;
}
label span {
    flex-basis: 120px;
    margin: auto;
}

input[type="text"], input[type="password"] {
    display: inline-block;
    height: 34px;
    flex-basis: 100%;
    padding: 0px 6px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
}

input[type="submit"] {
    display: inline-block;
    height: 34px;
    width: 100%;
    padding: 0px 6px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    color: #fff;
    background-color: #37C837;
    border: 1px solid #4cae4c;
    box-shadow: inset 0px 0px 2px #fff
}