html {
  background: #071014;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 80% 10%, rgba(45, 212, 191, .16), transparent 28rem),
    linear-gradient(135deg, #071014, #0f1b20 52%, #111827);
  color: #f8fafc;
  font-family: Inter, sans-serif;
}

.card {
  background: rgba(15, 27, 32, .88);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
}

.input {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: #071014;
  color: #fff;
  outline: none;
  padding: 13px 14px;
}

.input:focus {
  border-color: rgba(45, 212, 191, .8);
  box-shadow: 0 0 0 3px rgba(45, 212, 191, .12);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 8px;
  font-weight: 800;
  padding: 13px 18px;
  transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.btn-primary {
  background: #2dd4bf;
  color: #06201d;
}

.btn-primary:hover {
  background: #5eead4;
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .14);
  color: #e2e8f0;
}

.btn-secondary:hover {
  background: rgba(45, 212, 191, .08);
  border-color: rgba(45, 212, 191, .42);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: #cbd5e1;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
}

.hidden {
  display: none !important;
}

.toast {
  animation: toast-in .2s ease-out;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
