:root {
  --page-bg: #f5f7fb;
  --ink: #1f2937;
}

body {
  background: var(--page-bg);
  color: var(--ink);
}

.navbar-brand {
  letter-spacing: 0;
}

.page-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.login-wrap {
  min-height: calc(100vh - 10rem);
  display: grid;
  place-items: center;
}

.login-panel {
  width: min(100%, 26rem);
}

.form-panel {
  max-width: 58rem;
}

.action-row {
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.notes-cell {
  max-width: 24rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 700px) {
  .page-head {
    align-items: stretch;
    flex-direction: column;
  }

  .action-row {
    justify-content: flex-start;
  }
}

