/* css for login page */

body.page-login .logo {
    max-width: 250px;
}

body.page-login button {
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.4);
    line-height: 24px;
    padding: 10px 15px;
    text-align: center;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
    transition: 80ms cubic-bezier(.33,1,.68,1);
    transition-property: box-shadow;
    white-space: nowrap;
    background-color: #f5f5f5;
    color: #171717;
    font-size: 16px;
    font-weight: bold;
}

body.page-login button:hover {
    color: #171717 !important;
    background-color: #f5f5f5 !important;
    box-shadow: 0 0 0 1px #cbd5e1,0 1px 1px 0 rgba(15,23,41,.1),0 2px 5px 0 rgba(52,66,86,.1),0 3px 9px 0 rgba(52,66,86,.1);
}

body.page-login a {
    color: #5482ee;
}