* {
    margin: 0;
    padding: 0;
    outline: none;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 12px;
    text-align: center;
    background-color: white;
}

#login-wrapper {
    max-width: 30em;
    position: relative;
    margin: 0 auto;
    text-align: left;
}
#errorMessage {
    margin: 1em;
    color: #c10;
    font-weight: bold;
    text-align: center;
    display: none;
}
#originalErrorMessage {
    display: none;
}
#login-logo {
    display: block;
    height: 51px;
    margin-top: 20vh;
    margin-bottom: 2em;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.box {
    margin: 1em;
}
.box.cert {
    margin-top: 3em;
}
.box.cert .login-label,
.box.cert .login-cert {
    margin-top: 0;
    margin-bottom: .5em;
    display: inline-block;
}
.login-label {
    font-weight:bold;
    color: #003469;
}
.login-input {
    width: 100%;
    margin-bottom: 1em;
    border: 2px solid #003469;
    padding: .5em 1em;
    background-color: #fff;
    display: block;
    box-sizing: border-box;
}
#loginSubmitDiv {
    margin: 1em 0;
}

input.button-submit, input[type="button"] {
    background-color: #727272;
    padding: .5em 1em;
    color: white;
    cursor: pointer;
    border-style: solid;
    border-width: 2px;
    border-color: #727272;
}
input.button-submit {
    background-color: #003469;
    border-color: #003469;
    font-weight: bold;
}
input.button-submit:hover, input[type="button"]:hover {
    background-color: #014487;
    border-color: #014487;
}

.ie9 .placeholder,
.ie10 .placeholder {
    display: none !important;
}