<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
  --color-brand: #002c7b;
  --color-brand-rgb: 0, 44, 123;
}

html {
  height: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  height: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
}

/* Elements */

.form-group {
  margin-bottom: 30px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  color: #284774;
  font-size: 1rem;
  font-weight: 600;
}

input,
button {
  outline-color: var(--color-brand);
  font-family: inherit;
}

input.form-control {
  display: block;
  width: 100%;
  font-size: 0.875rem;
  border: 1px solid #e2e9f2;
  border-radius: 4px;
  padding: 18px 20px;
  color: #1e3e6b;
}

input.form-control::placeholder {
  color: #7a8fab;
}

a {
  text-decoration: none;
}

a,
a:hover,
a:active,
a:focus {
  color: var(--color-brand);
}

button {
  position: relative;
  background-color: var(--color-brand);
  border: 1px solid var(--color-brand);
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  padding: 15.5px;
  display: block;
  width: 100%;
  cursor: pointer;
}

button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0px 10px 30px rgba(var(--color-brand-rgb), 0.28);
  opacity: 0;
  transition: opacity 200ms;
  transition-timing-function: ease-in-out;
}

button:hover::before {
  opacity: 1;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-message {
  display: flex;
  align-items: center;
  border-radius: 6px;
  font-size: 1rem;
  padding: 16px 32px;
  width: 100%;
  color: white;
  background: #e01b2e;
  margin-bottom: 2rem;
}

.success-message {
  display: flex;
  align-items: center;
  border-radius: 6px;
  font-size: 1rem;
  padding: 16px 32px;
  width: 100%;
  color: white;
  font-weight:bold;
  background: #4cd137;
  margin-bottom: 2rem;
}

.error-message i {
  margin-right: 8px;
  flex-shrink: 0;
  flex-grow: 0;
}

/* Barcode scan */
.barcode-scan {
  text-align: center;
  color: #000;
  font-size: 0.875rem;
  line-height: 1.2rem;
}

.barcode-scan i {
  margin-right: 13px;
}

/* Layout */
.auth-layout {
  display: flex;
  overflow-x: hidden;
  justify-content: center;

  width: 100%;

  height: 100%;

  color: #1e3e6b;
}

.auth-layout__content {
  display: flex;
  flex-direction: column;

  width: 100%;
  flex-grow: 1;
  flex-shrink: 0;
  max-width: 600px;
}

.auth-layout__content header {
  flex-shrink: 0;

  padding: 27px 13px;
}

.auth-layout__content main {
  flex-grow: 1;

  padding: 0 13px;
}

.auth-layout__content footer {
  flex-shrink: 0;

  padding: 13px 13px 8px;
}

.auth-layout__slider {
  display: none;

  flex-grow: 1;
  overflow: hidden;
  background-color: #2a2a28;
}

.auth-layout__logo-wrapper {
  display: inline-block;

  margin-bottom: 48px;
}

.auth-layout__logo {
  width: 100%;
  max-width: 270px;
  max-height: 80px;

}

.auth-layout__logo img {
  max-width: 65%;
}

.auth-layout__title {
  font-size: 1.5rem;
  line-height: 160%;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1e3e6b;
}

.auth-layout__description {
  font-size: 0.875rem;
  line-height: 160%;
}

.auth-layout__footer-text {
  text-align: center;
  color: #7a8fab;

  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: 10px 32px;
}

.auth-layout__footer-logo {
  text-align: center;
}

@media only screen and (min-height: 812px) {
  .auth-layout__footer-text {
    margin: 32px;
  }

  .auth-layout__footer-logo {
    margin-bottom: -16px;
  }
}

@media only screen and (min-width: 1024px) {
  .auth-layout__slider {
    display: block;
  }

  .auth-layout__content {
    overflow: auto;
  }

  .auth-layout__content header {
    padding: 50px 56px 36px;
  }

  .auth-layout__content main {
    padding: 0 56px;
  }
}

.figure {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
</pre></body></html>