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

.login-panel {
  display: flex;
  flex-direction: column;
  width: min(100%, 600px);
  max-height: min(800px, calc(100vh - 48px));
  overflow: auto;
  gap: 16px;
}

.login-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.login-brand p {
  color: #5b6a62;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.login-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 4px;
}

.login-logo {
  display: block;
  width: min(100%, 200px);
  max-height: 160px;
  margin: 0 auto;
  object-fit: contain;
}

.message {
  min-height: 1.4em;
  font-size: 0.9rem;
}

.message:not(.ok) {
  color: #a13d2d;
}

.message.ok {
  color: #23664e;
}

.session-summary {
  max-width: 42vw;
  overflow: hidden;
  color: #23664e;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}
