body {
    margin: 0;
    padding: 0;
    background: #F9F9F9;
    font-family: Verdana, Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

#wrapper {

}

#container {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.authcontainer {
    width: 300px;
}

.logo {
    display: block;
    width: 100%;
    height: 100px;
    overflow: hidden;
    text-indent: -10000px;
    background: url(/bundles/lupcomprotectpage/logo.svg) center center no-repeat;
    background-size: 100% auto;
}

.error {
    color: red;
}

.username, .password {
    margin-bottom: 10px;
}

.username label, .password label {
    display: block;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
}

.username input, .password input {
    display: block;
    width: 100%;
    text-align: left;
    border: 1px solid lightgrey;
    line-height: 2;
    padding: 5px 10px;
}

.submit button {
    background: #0D86D1;
    color: #fff0ff;
    line-height: 2;
    padding: 5px 10px;
    text-align: center;
    display: block;
    width: 100%;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    margin-top: 20px;
}