.login-header {
    position: relative;
    width: 100%;
    height: 80px;
    background-color: #454551;
}

.login-header .login-title {
    width: 100%;
    line-height: 71px;
    padding: 0 174px 0 26px;
    font-size: 1.875em;
    color: #fff;
    font-family: 'Roboto', Tahoma, Arial, sans-serif;
}

.login-header .login-title small {
    display: block;
    font-size: 1rem;
    line-height: 0;
    top: -9px;
    position: relative;
    font-family: 'Roboto', Tahoma, Arial, sans-serif;
}

.login-header .logo-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 168px;
    height: 81px;
}

.login-header .leica-biosystems-logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/authserver/static/images/leica-brand.svg) no-repeat right top transparent;
    background-size: 100% auto;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    color: transparent;
}

.login-form {
    width: 340px;
    margin: 30px auto;
}

.simple-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    grid-template-areas: "cancel submit";
}
.simple-grid button[type=cancel] {
    grid-area: cancel;
}
.simple-grid button[type=submit] {
    grid-area: submit;
}
