* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
  min-height: 100vh;
  background: radial-gradient(circle at top, #0b1a2d, #020617);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.wrapper {
  text-align: center;
  padding: 40px 20px;
}

.logo {
  margin-bottom: 30px;
}

.ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 3px solid #38bdf8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  box-shadow: 0 0 25px rgba(56,189,248,.4);
}

.ring span {
  font-size: 40px;
  color: #38bdf8;
}

h1 {
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.quality {
  font-size: 14px;
  opacity: .75;
  margin-bottom: 32px;
}

.actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 280px;
  margin: auto;
}

.btn {
  padding: 15px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: .25s ease;
}

.primary {
  background: #1f2937;
  color: #fff;
}

.primary:hover {
  background: #374151;
}

.secondary {
  background: #0f172a;
  color: #cbd5f5;
}

.secondary:hover {
  background: #1e293b;
}

.notice {
  margin-top: 30px;
  font-size: 12px;
  opacity: .5;
}

footer {
  margin-top: 40px;
  font-size: 12px;
  opacity: .4;
}
