:root {
  color-scheme: light;
  --ink: #17241f;
  --muted: #5f7169;
  --green: #177c72;
  --panel: rgba(255, 255, 255, 0.88);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family:
    Onest, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    linear-gradient(180deg, rgba(252, 248, 242, 0.24), rgba(238, 246, 242, 0.42)),
    url("/brand/backgrounds/premium-auth-background.webp");
  background-size: cover;
  background-position: center top;
}

.boot {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.boot-card {
  width: min(430px, 100%);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 30px;
  background: var(--panel);
  box-shadow: 0 28px 90px rgba(29, 66, 56, 0.13);
  padding: 34px;
  text-align: center;
  backdrop-filter: blur(18px);
}

.boot-logo {
  width: 56px;
  height: 56px;
  margin: 0 auto 18px;
  border-radius: 18px;
  background: rgba(221, 239, 230, 0.9);
  display: grid;
  place-items: center;
}

.boot-logo img {
  width: auto;
  height: 38px;
  max-width: none;
  aspect-ratio: 2 / 3;
  object-fit: contain;
}

.boot-title {
  margin: 0 0 8px;
  font-size: 24px;
  line-height: 1.12;
  font-weight: 700;
}

.boot-text {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.boot-bar {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(23, 124, 114, 0.1);
  margin: 24px 0 0;
}

.boot-bar span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #177c72, #d6bd61);
  animation: boot-slide 1.2s ease-in-out infinite alternate;
}

@keyframes boot-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(138%);
  }
}

.boot-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
