body {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
  max-width: 500px;
  z-index: 10;
  position: relative;
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  letter-spacing: -1px;
  background: linear-gradient(to right, var(--h1-start), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

p {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.login-box {
  width: 100%;
  padding: 1.5rem;
}

input {
  width: 80%;
  margin-bottom: 1rem;
  text-align: center;
}

button {
  width: fit-content;
}

.tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* Badges */
.bottom-badges {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 1rem;
  display: flex;
  gap: 0.75rem;
  z-index: 100;
}

.bottom-badges img {
  height: 28px;
  border-radius: var(--radius-s);
}
