<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    font-family: Tahoma;
    color: #222;
}

html, body {
  min-height: 100%;
  height: 100%;
  background: rgb(250, 250, 250);
}

.content {
    min-height: calc(100% - 160px);
    padding-bottom: 60px;
    padding-top: 40px;
}

.mplogo1, .mplogo2 {
    display: block;
    margin: 0 auto 32px;
    width: 240px;
}

.mplogo2 {
    display: none;
    margin-top: 16px;
}

.title {
    text-align: center;
    padding-top: 12px;
    font-size: 20px;
}

.main {
    background: #fff no-repeat 0 0px url(/resources/login/login-bg.svg);
    background-size: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
    padding: 48px 24px 24px 24px;
    border-radius: 4px;
    box-shadow: 0px 3px 3px -2px rgba(0,0,0,0.2),0px 3px 4px 0px rgba(0,0,0,0.14),0px 1px 8px 0px rgba(0,0,0,0.12);
}

.main h1 {
    font-size: 24px;
    font-weight: normal;
}
.main h3 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 32px;
}

.main .err {
    color: red;
}

.main .success {
    color: green;
}

.success, .err {
    margin-top: 12px;
    margin-bottom: 24px;
}

a {
    color: rgb(0, 82, 204);
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

hr {
    margin: 24px 0;
    border: 0;
    height: 1px;
    background: rgba(0, 0, 0, 0.12);
    border-bottom: 0;
}

.or {
    padding: 16px 0;
    color: gray;
    font-size: 14px;
}

.main input.submitbutton {
    height: 40px;
    padding: 12px;
    width: 100%;
    max-width: 280px;
    margin-bottom: 16px;
}

input.textinput {
    height: 40px;
    padding: 12px;
    width: 100%;
    max-width: 280px;
    margin-bottom: 16px;
    border: 1px solid #A4A4A4;
    border-radius: 4px;
}

.remember {
    font-size: 14px;
    display: block;
    margin-bottom: 16px;
}

.remember input {
    width: 16px;
    height: 16px;
    position: relative;
    top: 2px;
}

.fa2 .remember {
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

#pwreminder {
    margin: 24px 0;
}

.footer {
    min-height: 160px;
    padding-top: 12px;
    padding-bottom: 24px;
    display: flex;
    justify-content: center;
    font-size: 13px;
    background: #02202B;
    color: rgba(255, 255, 255, 0.8);
}

.footer &gt; div {
    flex: 1 0 100%;
    padding: 0 12px;
    max-width: 480px;
}

.footer h1, .footer h2 {
    font-size: 14px;
}

.footer h3 {
    font-size: 13px;
}

.footer ul {
    padding-left: 24px;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: rgba(255, 255, 255, 1);
}

.gs {
  max-width: 250px !important;
}

.gs h3 {
    margin-bottom: 12px;
}

.gs a {
    line-height: 24px;
}

.gs .product img {
    width: 20px;
    height: 20px;
    margin: 0 8px -5px 8px;
}

.gs ul {
    list-style-type: none;
    padding-left: 0;
}


.btn {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border-width: 0;
  outline: none;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  background-color: #2B69A3;
  color: #FFF;
  transition: background-color .3s;

  text-transform: uppercase;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  max-width: 280px;
}

.btn:hover:not(:disabled), .btn:focus:not(:disabled) {
  background-color: #4a8ecf;
}

.btn &gt; * {
  position: relative;
}

.btn span {
  display: block;
  padding: 12px 24px;
}

.btn:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 0;
  padding-top: 0;
  border-radius: 100%;
  background-color: rgba(236, 240, 241, .3);
  transform: translate(-50%, -50%);
}

.btn:disabled {
  background: #888;
}

.btn:active:not(:disabled):before {
  width: 120%;
  padding-top: 120%;
  transition: width .2s ease-out, padding-top .2s ease-out;
}

.btn.google {
    background: #FFF;
    color: #222;
}

.btn.google:hover:not(:disabled), .btn.google:focus:not(:disabled) {
  background-color: #EEE;
}


.btn.google span {
    background: 24px 9px no-repeat url(/resources/login/google.svg);
    padding-left: 48px;
}


@media (max-width: 640px) {
    .footer {
        flex-direction: column;
    }
    .mplogo1 {
        display: none;
    }
    .mplogo2 {
        display: block;
    }
    .content {
        padding-top: 0;
        background: #FFF;
    }
    .main {
        box-shadow: none;
        max-width: 100%;
        border-radius: 0;
    }
    .footer &gt; div {
        padding: 0 24px;
    }
    .gs {
        margin-top: 32px;
    }
}


.fa2 .main {
}

.fa2 .qrcode {
    display: block;
    margin: 24px auto;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /* display: none; &lt;- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0; /* &lt;-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.language-selector {
    text-align: center;
    margin-top: 24px;
}</pre></body></html>