@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Inter:wght@400;500&display=swap");

body {
  background: #0a0a0f;
  color: #e2e8f0;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}

.container.wrap {
  max-width: 560px;
  margin: 40px auto;
  background: #111118;
  border: 1px solid #2d1f4e;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(109,40,217,0.15);
  padding: 0;
}

header.header {
  background: #0a0a0f;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid #2d1f4e;
}

header.header .logo {
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 0;
}

header.header .logo, header.header .logo a {
  display: block !important;
  width: 100% !important;
  line-height: 0;
  max-width: none !important;
}

header.header .logo img {
  width: 100% !important;
  max-width: none !important;
  height: auto;
  display: block;
  object-fit: cover;
}

h2 {
  font-family: "Cinzel", serif;
  color: #a78bfa;
  text-align: center;
  font-size: 1.5rem;
  margin: 28px 24px 20px;
  text-shadow: 0 0 20px rgba(167,139,250,0.4);
}

/* Form fields */
.form-wrap, form {
  padding: 0 24px 24px;
}

input[type="email"],
input[type="text"] {
  width: 100%;
  box-sizing: border-box;
  background: #1a1a2e;
  border: 1px solid #2d1f4e;
  color: #e2e8f0;
  padding: 10px 14px;
  border-radius: 6px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  margin-top: 4px;
}

input[type="email"]::placeholder,
input[type="text"]::placeholder {
  color: #475569;
}

label {
  color: #94a3b8;
  font-size: 0.85rem;
}

/* Hide lists section and archive link */
.lists, h3, .button-link, p.right { display: none !important; }

/* Submit button */
input[type="submit"], button[type="submit"], .button, a.button {
  display: inline-block;
  background: #6d28d9;
  color: #fff !important;
  padding: 11px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  margin-top: 20px;
  box-shadow: 0 0 20px rgba(109,40,217,0.4);
  width: 100%;
}

a { color: #a78bfa; }

footer.container {
  background: transparent;
  text-align: center;
  color: #475569;
  font-size: 0.8rem;
  padding: 16px;
  border-top: 1px solid #1e1b2e;
}