
/* ==============================
   Theme Variables
================================ */
:root {
  --bg: #0b0f14;
  --panel: #111827;
  --line: rgba(255,255,255,.08);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --accent: #d1a72a; //yellowish
  --accentSoft: #d1a72a; //yellowish with transparency;
  --danger: #ef4444;
  --shadow: 0 12px 28px rgba(0,0,0,.4);
  --radius: 18px;
}

/* ==============================
   Base / Reset
================================ */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: linear-gradient(#0d58d1, #083b8c 0%, #052963 80%);
  color: var(--text);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==============================
   Layout
================================ */
.app {
  max-width: 760px;
  margin: 0 auto;
  min-height: 100vh;
  padding: 18px;
  display: flex;
  align-items: center;
}

.card {
  width: 100%;
  background: rgba(255,255,255,.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

/* ==============================
   Header
================================ */
.header {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .2px;
}

.sub {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ==============================
   Error Message
================================ */
.error {
  margin: 12px 0;
  background: rgba(239,68,68,.14);
  border: 1px solid rgba(239,68,68,.3);
  color: #fecaca;
  padding: 10px 12px;
  border-radius: 14px;
}

/* ==============================
   Form Controls
================================ */
label {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 6px;
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.05);
  color: var(--text);
  outline: none;
  font-size: 14px;
}

input::placeholder {
  color: rgba(156,163,175,.7);
}

input:focus,
select:focus {
  border-color: rgba(34,197,94,.4);
}

/* ==============================
   Grid
================================ */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}



/* ==============================
   CTA Button
================================ */
.cta {
  margin-top: 16px;
  width: 100%;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(34,197,94,.3);
  background: #d1a72a;
  color: #ffffff;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  transition: transform .08s ease, background .15s ease;
}

.cta:hover {
  background: rgba(34,197,94,.22);
}

.cta:active {
  transform: scale(.97);
}

/* ==============================
   Fine Print
================================ */
.fine {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ==============================
   Desktop Enhancements
================================ */
@media (min-width: 680px) {
  .grid {
    grid-template-columns: 1fr 1fr;
  }

  .title {
    font-size: 24px;
  }

  .card {
    padding: 22px;
  }
}

.btn-check:checked + .btn {
  border: 2px solid #d1a72a !important;
  background-color: #5d85d4 !important;
  box-shadow: 0 6px 18px rgba(124, 92, 255, 0.12);
}

.trial-box {
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 16px;
  background: #fafafa;
}


.form-check-input {
  margin-right: 0.5em; /* Adjust as needed */
}