/*
 * Documentation
 * Docs: /Docs/Apps/Microsites/pmkto.md
 * Visual theme for the pmkto site. Defines layout, typography, colors, and component styling.
 */
/* Documentation: Base styling and layout rules.  Docs: /Docs/Apps/Microsites/pmkto.md */

body {
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  background: #0b0b0d;
  color: #f5f5f5;
}
/* Documentation: Component styling and visual treatments.  Docs: /Docs/Apps/Microsites/pmkto.md */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 20px;
}
.card {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}
label {
  display: block;
  margin: 12px 0 6px;
}
input {
  width: 100%;
  max-width: 420px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: #121218;
  color: #fff;
}
button {
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 10px;
  border: 0;
  background: #ffffff;
  color: #111;
  cursor: pointer;
}
.interest-status.message {
  margin-top: 12px;
  min-height: 24px;
}
.interest-status.message.success {
  color: #9ae6b4;
}
.interest-status.message.error {
  color: #feb2b2;
}
.interest-status.message.pending {
  color: #cbd5e1;
}

/* Confirmation page styles */
.confirmation-page {
  margin: 0;
}
.confirmation-page--success {
  background: #050505;
  color: #e5e5e5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  display: flex;
  height: 100vh;
  margin: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.confirmation-page--success .container {
  padding: 40px;
  max-width: 600px;
}
.confirmation-page--success h1 {
  color: #4ade80;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.confirmation-page--success p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}
.confirmation-page--success a {
  color: #888;
  margin-top: 30px;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.confirmation-page--success a:hover {
  color: #fff;
  border-bottom-color: #fff;
}

.confirmation-page--error {
  background: #050505;
  color: #e5e5e5;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
  display: flex;
  height: 100vh;
  margin: 0;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.confirmation-page--error .container {
  padding: 40px;
  max-width: 600px;
}
.confirmation-page--error h1 {
  color: #ff5555;
  font-size: 2rem;
  margin-bottom: 1rem;
}
.confirmation-page--error p {
  color: #ccc;
  font-size: 1.1rem;
  line-height: 1.6;
}
.confirmation-page--error a {
  color: #888;
  margin-top: 30px;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.2s;
}
.confirmation-page--error a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
/* Last-Modified: 2026-01-15T03:34:36.0000000Z */