/* 
    Created on : 19 nov. 2019, 10:30:43
    Author     : Joakim Hagberg
*/

#loginForm {
    position: absolute;
    width: 350px;
    left: 50%;
    margin-left: -175px;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

#loginForm label {
    float:left;
    clear:left;
    width: 80px;
    text-align: right;
    font-size: 12px;
    font-weight: bold;
    line-height: 26px;
    margin-right: 4px;
}

#loginForm input {
    float:left;
    margin: 2px;
    width: 220px;
}

#loginForm input[type="submit"] {
    float:right;
    margin-right: 44px;
}

#login_submit {
    width: 100%;
    cursor: pointer;
    border: 1px dotted;
}

#login_submit:hover {
    background-color: var(--list-hover);
}

#login_message {
    float: left;
    clear: left;
    width: 100%;
    text-align: center;
    color: red;
    margin-top: 10px;
}

#pageloading {
    display: none;
}