/* Minimal centered recruitment splash */

html, body {
  height: 100%;
}

/* Full viewport container */
.landing-splash {
  min-height: 100vh;
  display: grid;
  place-items: center;      /* perfect vertical + horizontal centering */
  padding: var(--space-6);
}

/* Inner wrapper */
.landing-splash__inner {
  width: min(640px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;      /* horizontal center */
  justify-content: center;  /* vertical stacking center */
  text-align: center;
  gap: var(--space-5);
}

/* Logo */
.landing-splash__logo {
  width: min(560px, 70vw);
  height: auto;
  display: block;
}

/* Title */
.landing-splash__title {
  margin: 0;
  margin-top: -93px; /* visually tighten space between logo and title */
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* Login button wrapper */
.landing-splash__login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  /* border-radius: var(--radius-2);
  border: var(--border-1);
  background: var(--bg-panel-alt); */
  text-decoration: none;
  transition: filter 120ms ease-in-out;
}

.landing-splash__login:hover {
  filter: brightness(1.1);
}

/* EVE SSO image */
.landing-splash__loginImg {
  width: min(240px, 70vw);
  height: auto;
  display: block;
}

/* Small hint text */
.landing-splash__hint {
  margin: 0;
  font-size: var(--text-12);
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 60ch;
}
