:root {
  --color-bg: #1A0821;
  --color-fucsia: #e93b8c;
  --color-rosa: #f9a9ca;
  --color-violeta: #b6a0d8;
  --color-text: #f6f6f6;
}

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--color-bg);
  color: var(--color-text);
}

.card {
  max-width: 700px;
  padding: 40px 30px;
  border-radius: 18px;
  background: #2a1331;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
  text-align: center;
}

.logo {
  width: 220px;
  height: auto;
  margin: 0 auto 25px;
  display: block;
  image-rendering: auto;
  border-radius: 0;
  box-shadow: 0 0 15px rgba(233, 59, 140, 0.4);
}

h1 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-rosa);
  margin-top: 0;
  margin-bottom: 12px;
}

p {
  margin: 8px 0;
  line-height: 1.5;
}

a.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--color-fucsia);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.25s ease;
}

a.btn:hover {
  background: var(--color-violeta);
}

p.small {
  opacity: .8;
  font-size: .9rem;
  margin-top: 14px;
}
