:root {
  color-scheme: light;
  --ink: #1f2328;
  --graphite: #4f5661;
  --muted: #858585;
  --line: #e6e6e3;
  --line-strong: #d8d8d5;
  --panel: #ffffff;
  --page: #fbfbfa;
  --sidebar: #ededeb;
  --field: #f1f2f1;
  --field-2: #f7f7f6;
  --green: #4f7657;
  --green-soft: #e9f6ea;
  --green-ink: #276b36;
  --danger: #c0362c;
  --warn: #a66f00;
  --shadow: 0 1px 2px rgba(31, 35, 40, 0.04);
  --shadow-lg: 0 12px 36px rgba(31, 35, 40, 0.12);
  font-family: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--page);
  color: var(--ink);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  align-items: center;
  background: white;
  border: 1px solid #d9d9d6;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #25292e;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  gap: 6px;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
}

button:hover {
  background: #f7f7f6;
}

button.secondary {
  background: #f7f7f6;
  color: #3f444a;
}

button.green-pastel {
  background: #dff4e3;
  border-color: #b8dfc0;
  color: #245b30;
}

button.green-pastel:hover {
  background: #d3eed8;
}

button.ghost {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: var(--graphite);
}

.google-login-box {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 40px;
}

#google-admin-login {
  max-width: 100%;
  min-height: 40px;
  width: 240px;
}

#google-admin-login > div {
  max-width: 100%;
}

button.icon-button {
  font-size: 22px;
  height: 32px;
  line-height: 1;
  min-height: 32px;
  padding: 0;
  width: 32px;
}

button:disabled {
  background: #ece8df;
  color: #81877f;
  cursor: not-allowed;
  opacity: 1;
}

a {
  color: var(--green-ink);
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.shell {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  min-height: 100vh;
}

.sidebar {
  background: var(--sidebar);
  border-right: 1px solid var(--line-strong);
  color: #3f444a;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-y: auto;
  padding: 10px;
  position: sticky;
  top: 0;
}

.brand {
  align-items: center;
  color: #24282d;
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 10px;
  min-height: 32px;
  margin: 0 0 12px;
  padding: 0 8px;
}

.logo-mark {
  background: #f9f9f8;
  border: 0.75px solid #d0d0cc;
  border-radius: 6px;
  display: grid;
  height: 24px;
  place-items: center;
  position: relative;
  width: 24px;
}

.logo-mark::before {
  border: 1px solid #4f7657;
  border-radius: 9px 9px 9px 3px;
  content: "";
  display: block;
  height: 11px;
  position: absolute;
  transform: rotate(-18deg);
  width: 11px;
}

.tagline {
  color: #777773;
  font-size: 12px;
  line-height: 1.45;
  margin: 0 8px 18px;
}

.nav {
  display: grid;
  gap: 1px;
}

.nav-bottom {
  border-top: 1px solid var(--line-strong);
  margin-top: auto;
  padding-top: 10px;
}

.nav button {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #464b51;
  justify-content: flex-start;
  min-height: 28px;
  padding: 5px 8px;
  text-align: left;
  width: 100%;
}

.nav button:hover,
.nav button.active {
  background: #dededb;
  color: var(--ink);
}

.nav-icon {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.45;
}

.nav-badge {
  background: var(--green);
  border-radius: 999px;
  color: white;
  font-size: 11px;
  line-height: 1;
  margin-left: auto;
  min-width: 18px;
  padding: 4px 6px;
  text-align: center;
}

.logout-button {
  color: #57606a;
}

.logout-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.main {
  min-width: 0;
  padding: 0;
}

.main > .grid {
  padding: 16px;
}

.main .topbar {
  margin: -16px -16px 16px;
}

.page-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin-bottom: 16px;
}

.topbar {
  align-items: center;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  box-shadow: none;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 51px;
  padding: 8px 16px;
  position: sticky;
  top: 0;
  z-index: 5;
}

.titlebar-left {
  align-items: center;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.titlebar-left h1 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.titlebar-right {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-left: auto;
}

.user-summary {
  align-items: center;
  display: flex;
  gap: 8px;
}

.user-avatar {
  align-items: center;
  background: #eeeeec;
  border: 1px solid #d9d9d6;
  border-radius: 999px;
  color: #57606a;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.user-copy {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.user-copy strong {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.user-copy span {
  color: #6d6d69;
  font-size: 11px;
}

h1 {
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  margin: 0;
}

h2 {
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  margin: 0 0 16px;
}

h3 {
  font-size: 15px;
  margin: 0 0 10px;
}

.muted {
  color: var(--muted);
  font-size: 13px;
}

.grid {
  display: grid;
  gap: 16px;
}

.two {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 16px;
}

.panel-header {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.panel-header h2 {
  margin: 0;
}

.login {
  background: var(--page);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 100vh;
}

.login-hero {
  background: var(--sidebar);
  border-right: 1px solid var(--line);
  color: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 54px;
}

.login-hero h1 {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 500;
  line-height: 1;
  max-width: 680px;
}

.login-hero p {
  color: var(--graphite);
  font-size: 15px;
  line-height: 1.55;
  max-width: 620px;
}

.login-card {
  align-self: center;
  box-shadow: none;
  justify-self: center;
  width: min(430px, calc(100vw - 36px));
}

.admin-login-side {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
}

.login-language {
  display: flex;
  justify-content: flex-end;
}

.marketing {
  min-height: 100vh;
}

.marketing-top {
  align-items: center;
  background: white;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  min-height: 58px;
  padding: 10px 24px;
}

.marketing-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.marketing-header-cta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.marketing-header-cta a {
  background: var(--ink);
  border-radius: 8px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 10px;
}

.language-picker {
  background: #f7f7f6;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 18px;
  min-height: 32px;
  padding: 3px 8px;
  text-align: center;
}

.marketing-main {
  display: grid;
  gap: clamp(46px, 7vw, 82px);
  padding: clamp(54px, 8vw, 112px) 24px clamp(64px, 9vw, 124px);
}

.marketing-hero {
  margin: 0 auto;
  max-width: 920px;
  text-align: center;
}

.marketing-hero h1 {
  font-size: clamp(38px, 7vw, 74px);
  font-weight: 550;
  line-height: 0.98;
  margin: 0 auto 26px;
  max-width: 900px;
}

.marketing-hero p {
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 720px;
}

.eyebrow {
  color: var(--green-ink) !important;
  font-size: 13px !important;
  font-weight: 700;
  margin-bottom: 22px !important;
  text-transform: uppercase;
}

.marketing-buttons {
  align-items: center;
  display: grid;
  gap: 12px;
  justify-items: center;
  margin-top: 38px;
}

.marketing-buttons a {
  background: var(--ink);
  border-radius: 8px;
  color: white;
  padding: 10px 14px;
}

.marketing-points {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
}

.marketing-points article {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}

.marketing-points p {
  color: var(--graphite);
  line-height: 1.5;
  margin: 0;
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 13px;
}

label {
  color: #6d6d69;
  font-size: 12px;
  font-weight: 600;
}

input,
select,
textarea {
  background: white;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  color: var(--ink);
  min-height: 36px;
  min-width: 0;
  padding: 8px 10px;
  width: 100%;
}

select.language-picker {
  background: #f7f7f6;
  box-shadow: var(--shadow);
  flex: 0 0 auto;
  font-size: 18px;
  min-height: 30px;
  padding: 2px 5px;
  width: auto;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #075dcc;
  box-shadow: 0 0 0 2px #075dcc;
  outline: none;
}

textarea {
  min-height: 112px;
  resize: vertical;
}

table {
  border-collapse: collapse;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  padding: 8px 8px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #fafafa;
  color: #8a8a86;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

tr[data-clickable="true"] {
  cursor: pointer;
}

tr[data-clickable="true"]:hover td {
  background: #f6f8f5;
}

.status {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 11px;
  font-weight: 700;
  gap: 6px;
  padding: 4px 8px;
}

.status.passed {
  background: var(--green-soft);
  color: var(--green-ink);
}

.status.failed {
  background: #f9e7e5;
  color: var(--danger);
}

.status.pending,
.status.processing {
  background: #f8f0db;
  color: var(--warn);
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bottom-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.notification-card {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 12px;
}

.notification-card + .notification-card {
  margin-top: 10px;
}

.notification-card.unread {
  background: var(--green-soft);
  border-color: #cfe3d2;
}

.notification-card p {
  margin: 4px 0 0;
}

.settings-form {
  max-width: 920px;
}

.modal-backdrop {
  align-items: center;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 24px;
  position: fixed;
  z-index: 30;
}

.modal {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 16px;
  width: min(720px, 100%);
}

.modal-header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.modal-header h2 {
  margin: 0;
}

.modal-actions {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
}

.modal-actions.centered {
  justify-content: center;
}

.create-trip-modal {
  text-align: center;
}

.create-trip-modal .modal-header {
  justify-content: center;
  position: relative;
}

.create-trip-modal .modal-header h2 {
  color: #2c3034;
  font-size: 19px;
  line-height: 1.45;
  max-width: 600px;
}

.create-trip-modal .modal-header .icon-button {
  position: absolute;
  right: 0;
  top: 0;
}

.create-trip-form {
  align-items: center;
  justify-items: center;
}

.trip-upload-guidance {
  color: #4b4f55;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.processing-state {
  align-items: center;
  display: grid;
  gap: 14px;
  justify-items: center;
  min-height: 180px;
  padding: 20px;
  text-align: center;
}

.processing-state p {
  color: #33383e;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 420px;
}

.spinner {
  animation: spin 0.85s linear infinite;
  border: 3px solid #ece8df;
  border-radius: 50%;
  border-top-color: var(--green);
  height: 42px;
  width: 42px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.split {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.trip-layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr);
}

.score-panel {
  align-items: stretch;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
  padding: 14px;
}

.entity-detail-link {
  color: var(--graphite);
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  word-break: break-all;
}

.score-left {
  align-items: center;
  display: flex;
  gap: 14px;
}

.score-left strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.score-donut {
  --score: 0;
  --score-color: var(--green);
  align-items: center;
  aspect-ratio: 1;
  background: conic-gradient(var(--score-color) calc(var(--score) * 1%), #ece8df 0);
  border-radius: 50%;
  color: var(--score-color);
  display: grid;
  flex: 0 0 82px;
  font-size: 20px;
  font-weight: 700;
  place-items: center;
  position: relative;
  width: 82px;
}

.score-donut::after {
  background: white;
  border-radius: 50%;
  content: "";
  inset: 10px;
  position: absolute;
}

.score-donut span {
  position: relative;
  z-index: 1;
}

.score-donut.compact {
  flex-basis: 42px;
  font-size: 12px;
  width: 42px;
}

.score-donut.compact::after {
  inset: 5px;
}

.score-side {
  align-content: start;
  display: grid;
  gap: 10px;
}

.score-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.score-warnings {
  color: var(--danger);
  margin: 0;
  padding-left: 18px;
}

.score-warnings li {
  margin: 4px 0;
}

.score-clean {
  color: var(--green-ink);
  font-size: 13px;
  margin: 0;
}

.compact-trip-form textarea {
  min-height: 86px;
}

.compact-fields {
  gap: 10px;
}

.document-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.document-card {
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 10px;
  padding: 10px;
}

.file-count {
  background: #ece8df;
  border-radius: 999px;
  color: var(--graphite);
  font-size: 11px;
  font-weight: 700;
  padding: 2px 7px;
}

.file-name-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.file-name-list span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--graphite);
  font-size: 11px;
  padding: 4px 7px;
}

.document-upload-action {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: space-between;
}

.document-upload-action .file-picker-names {
  display: none;
}

.additional-files-row {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.additional-files-row h2 {
  margin: 0;
}

.verify-row {
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  gap: 10px;
  padding: 12px;
}

.file-picker {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.file-picker-button {
  align-items: center;
  background: white;
  border: 1px solid #d9d9d6;
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: #25292e;
  cursor: pointer;
  display: inline-flex;
  font-size: 13px;
  font-weight: 500;
  gap: 6px;
  justify-content: center;
  min-height: 32px;
  padding: 6px 10px;
}

.file-picker-button:hover {
  background: #f7f7f6;
}

.file-picker-names {
  color: var(--muted);
  flex: 1 1 220px;
  font-size: 12px;
  line-height: 1.4;
  min-width: 0;
  overflow-wrap: anywhere;
}

.drop-zone-wrap {
  display: grid;
  justify-items: center;
  width: min(620px, 100%);
}

.drop-zone-layout {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(190px, 0.85fr) minmax(220px, 1.15fr);
  justify-content: center;
  width: 100%;
}

.drop-zone {
  align-items: center;
  background: #fbfbfa;
  border: 1.5px dashed #b9b9b4;
  border-radius: 12px;
  color: #32363b;
  cursor: pointer;
  display: grid;
  font-size: 15px;
  font-weight: 700;
  gap: 10px;
  justify-items: center;
  min-height: 126px;
  padding: 18px;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
  width: 100%;
}

.drop-zone:hover,
.drop-zone.is-dragging {
  background: #f2f8f1;
  border-color: #8fc99a;
  box-shadow: inset 0 0 0 1px #b7dfbd;
}

.drop-zone .nav-icon {
  height: 24px;
  width: 24px;
}

.drop-zone-file-list {
  align-content: start;
  background: #fbfbfa;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  display: grid;
  gap: 7px;
  max-width: 100%;
  min-height: 126px;
  padding: 10px;
  text-align: left;
}

.drop-zone-file-list .hint {
  align-self: center;
  justify-self: center;
  margin: 0;
  text-align: center;
}

.selected-file-row {
  align-items: center;
  color: #32363b;
  display: grid;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  grid-template-columns: 18px minmax(0, 1fr);
  min-width: 0;
}

.selected-file-row span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.selected-file-row .nav-icon,
.selected-file-row .pdf-icon {
  color: #4f704f;
  height: 17px;
  width: 17px;
}

.sr-only-input {
  border: 0;
  height: 1px;
  margin: 0;
  min-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.letter-ready-panel {
  align-items: center;
  background: var(--green-soft);
  border: 1px solid #b8dfc0;
  border-radius: 10px;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  padding: 12px;
}

.letter-ready-panel strong {
  color: #245b30;
}

.letter-ready-panel p {
  margin: 4px 0 0;
}

.letter-link {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  white-space: nowrap;
}

.letter-link.letter-button {
  background: #dff3df;
  border: 1px solid #a9d8af;
  border-radius: 8px;
  color: #245b30;
  font-weight: 700;
  min-height: 38px;
  padding: 0 14px;
  text-decoration: none;
}

.letter-link.letter-button:hover {
  background: #d2ecd3;
}

.pdf-icon,
.file-picker-button .nav-icon {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.success-unicorn {
  text-align: center;
}

.success-unicorn .unicorn {
  font-size: 54px;
  line-height: 1;
}

.success-unicorn h3 {
  margin: 0;
}

.success-unicorn p {
  color: var(--graphite);
  line-height: 1.5;
  margin: 0 auto;
  max-width: 440px;
}

.verification-issues {
  background: #fff8f7;
  border: 1px solid #efb4ad;
  border-radius: 10px;
  color: var(--danger);
  padding: 12px;
}

.verification-issues h2 {
  color: var(--danger);
  margin-bottom: 8px;
}

.verification-issues ul {
  margin: 0;
  padding-left: 18px;
}

.stack {
  display: grid;
  gap: 12px;
}

.hint {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.failure-reason {
  color: var(--danger);
}

.message-with-toggle {
  display: grid;
  gap: 4px;
}

.message-with-toggle p {
  margin-bottom: 0;
}

.message-toggle {
  justify-self: flex-start;
  padding: 0;
  text-decoration: underline;
}

.error {
  color: var(--danger);
  font-size: 13px;
  min-height: 18px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill {
  background: #f1f2f1;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--graphite);
  font-size: 12px;
  padding: 5px 8px;
}

@media (max-width: 900px) {
  .shell,
  .login,
  .two,
  .trip-layout,
  .score-panel,
  .document-grid,
  .grid-three,
  .drop-zone-layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    height: auto;
    position: sticky;
    z-index: 10;
  }

  .nav {
    grid-auto-flow: column;
    overflow-x: auto;
  }

  .main {
    padding: 0;
  }

  .main > .grid {
    padding: 18px;
  }

  .main .topbar {
    margin: -18px -18px 18px;
  }

  .login-hero,
  .login-card {
    min-height: 50vh;
  }

  .login-hero {
    padding: 30px;
  }
}
