body {
  align-items: center;
  background: #f8fafc;
  color: #0f172a;
  display: flex;
  flex-direction: column;
  font-family: system-ui, sans-serif;
  gap: 1rem;
  justify-content: start;
}

.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 90%;
  padding: 2rem;
  position: relative;
  text-align: center;
  width: 500px;
  margin-top: 10vh;
}

input {
  border: 1px solid #cbd5e1;
  border-radius: .5rem;
  margin-bottom: .6rem;
  padding: .6rem;
  width: 100%;
}

button,
a {
  background: #2563eb;
  border: none;
  border-radius: .5rem;
  color: white;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  padding: .6rem 1rem;
  text-decoration: none;
}

button.secondary,
a.home-btn {
  background: #475569;
  margin-left: .5rem;
}

pre {
  background: #f1f5f9;
  border-radius: .5rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding: .75rem;
  text-align: left;
}

.copied {
  background: #16a34a;
  border-radius: .4rem;
  color: white;
  font-size: .9rem;
  opacity: 0;
  padding: .3rem .6rem;
  position: absolute;
  right: 1rem;
  top: 1rem;
  transition: opacity .3s ease;

  &.show {
    opacity: 1;
  }
}

.links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

footer {
  color: #94a3b8;
  font-size: 12px;
  margin-top: 1rem;
}
