* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, Helvetica, sans-serif;
  background: #050816;
  color: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.nav {
  width: 100%;
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(5, 8, 22, 0.82);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 99;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  background: linear-gradient(135deg, #1f8cff, #7c3cff);
  padding: 8px 10px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(31,140,255,.25);
}

.nav-links {
  display: flex;
  gap: 28px;
  color: #b8c4d9;
  font-size: 14px;
}

.nav-links a:hover {
  color: #ffffff;
}

.nav-btn,
.btn-primary {
  background: linear-gradient(135deg, #1f8cff, #7c3cff);
  color: white;
  padding: 13px 22px;
  border-radius: 14px;
  font-weight: 800;
  display: inline-block;
  box-shadow: 0 18px 45px rgba(31,140,255,.25);
}

.btn-secondary {
  color: white;
  padding: 13px 22px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 14px;
  display: inline-block;
  background: rgba(255,255,255,.04);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  padding: 110px 7% 90px;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 60px;
  align-items: center;
  background:
    radial-gradient(circle at top right, rgba(31,140,255,0.18), transparent 32%),
    radial-gradient(circle at bottom left, rgba(124,60,255,0.18), transparent 34%),
    #050816;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .5;
}

.hero-glow-one {
  width: 360px;
  height: 360px;
  background: #1f8cff;
  right: -90px;
  top: 120px;
}

.hero-glow-two {
  width: 320px;
  height: 320px;
  background: #7c3cff;
  left: -100px;
  bottom: 40px;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 2;
}

.badge {
  display: inline-block;
  color: #8ec5ff;
  background: rgba(31,140,255,0.13);
  border: 1px solid rgba(31,140,255,0.32);
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.hero h1 {
  font-size: clamp(45px, 6.5vw, 86px);
  line-height: .92;
  letter-spacing: -0.06em;
  max-width: 900px;
  margin-bottom: 26px;
}

.hero-text {
  color: #c7d2e8;
  font-size: 19px;
  max-width: 760px;
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-proof {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 680px;
  gap: 14px;
}

.hero-proof div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.hero-proof strong {
  display: block;
  font-size: 22px;
}

.hero-proof span {
  color: #94a3b8;
  font-size: 13px;
}

.hero-panel {
  background: rgba(14, 24, 49, .78);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 32px;
  padding: 26px;
  box-shadow: 0 40px 100px rgba(0,0,0,.45);
}

.panel-header {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.panel-header span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,.22);
}

.panel-title p {
  color: #8ec5ff;
  font-weight: 800;
  font-size: 13px;
}

.panel-title strong {
  display: block;
  font-size: 28px;
  margin-bottom: 24px;
}

.chart-card {
  position: relative;
  height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  border: 1px solid rgba(255,255,255,.1);
}

.chart-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 4px;
  border-radius: 999px;
}

.chart-line.blue {
  top: 36%;
  background: linear-gradient(90deg, transparent, #36a3ff, #36a3ff, transparent);
  transform: rotate(-5deg);
}

.chart-line.pink {
  top: 62%;
  background: linear-gradient(90deg, transparent, #ff5f8f, #ff5f8f, transparent);
  transform: rotate(9deg);
}

.insight-card {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.insight-card span {
  color: #8ec5ff;
  font-weight: 800;
  font-size: 13px;
}

.insight-card p {
  color: #d6e2f7;
  margin-top: 4px;
}

.section {
  padding: 105px 7%;
  background: #ffffff;
  color: #0b1220;
}

.section.dark {
  background:
    radial-gradient(circle at top right, rgba(31,140,255,.12), transparent 32%),
    #080d1f;
  color: #ffffff;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
}

.section h2 {
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 980px;
  margin-bottom: 22px;
}

.lead {
  color: #64748b;
  font-size: 19px;
  max-width: 850px;
  margin-bottom: 42px;
}

.dark .lead {
  color: #c7d2e8;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid.four {
  grid-template-columns: repeat(4, 1fr);
}

.ecosystem {
  grid-template-columns: repeat(4, 1fr);
}

.premium-card,
.ecosystem-card {
  min-height: 160px;
  padding: 26px;
  border-radius: 24px;
  background: #f4f7fb;
  border: 1px solid #e5e7eb;
  transition: .25s;
}

.dark .premium-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.premium-card:hover,
.ecosystem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(15,23,42,.1);
}

.ecosystem-card span {
  color: #1f8cff;
  font-size: 13px;
  font-weight: 900;
}

.ecosystem-card strong {
  display: block;
  font-size: 20px;
  margin: 10px 0 8px;
}

.ecosystem-card p {
  color: #64748b;
}

.steps-premium {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.steps-premium div {
  min-height: 230px;
  padding: 28px;
  border-radius: 26px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
}

.steps-premium strong {
  color: #8ec5ff;
  font-size: 13px;
  font-weight: 900;
}

.steps-premium h3 {
  font-size: 24px;
  margin: 16px 0 10px;
}

.steps-premium p {
  color: #c7d2e8;
}

.evolution-road {
  position: relative;
  margin-top: 55px;
  display: grid;
  gap: 18px;
}

.evolution-road:before {
  content: "";
  position: absolute;
  left: 30px;
  top: 34px;
  bottom: 34px;
  width: 2px;
  background: linear-gradient(#22c55e, #3b82f6, #8b5cf6, #f59e0b, #ef4444, #ffffff);
  opacity: .5;
}

.road-item {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60px 1fr 260px;
  gap: 24px;
  align-items: center;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.13);
  transition: .25s;
}

.road-item:hover {
  transform: translateX(6px);
  border-color: rgba(142,197,255,.5);
  box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

.road-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  margin-left: 21px;
  box-shadow: 0 0 0 8px rgba(255,255,255,.07);
}

.road-dot.green { background: #22c55e; }
.road-dot.blue { background: #3b82f6; }
.road-dot.purple { background: #8b5cf6; }
.road-dot.orange { background: #f59e0b; }
.road-dot.gold { background: #facc15; }
.road-dot.red { background: #ef4444; }
.road-dot.black { background: #ffffff; }

.road-item strong {
  display: block;
  font-size: 24px;
}

.road-item p {
  color: #c7d2e8;
  margin-top: 3px;
}

.road-item > span {
  text-align: right;
  color: #ffffff;
  font-weight: 900;
}

.final-section {
  background:
    radial-gradient(circle at left, rgba(31,140,255,.18), transparent 34%),
    #050816;
  color: #ffffff;
}

.split {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.form {
  background: #ffffff;
  color: #0b1220;
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 40px 90px rgba(0,0,0,.25);
}

.form h3 {
  font-size: 28px;
  margin-bottom: 22px;
}

.form label {
  display: block;
  font-weight: 800;
  margin-top: 15px;
  margin-bottom: 7px;
}

.form input,
.form select {
  width: 100%;
  padding: 15px;
  border-radius: 14px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
  outline: none;
}

.form input:focus,
.form select:focus {
  border-color: #1f8cff;
  box-shadow: 0 0 0 4px rgba(31,140,255,.12);
}

.form input::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.form input:focus::placeholder {
  color: transparent;
}

.field-help {
  display: block;
  margin-top: 6px;
  color: #64748b;
  font-size: 13px;
}

.honeypot {
  display: none !important;
}

.form button {
  width: 100%;
  margin-top: 24px;
  background: linear-gradient(135deg, #1f8cff, #7c3cff);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 14px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(31,140,255,.25);
}

.form small {
  display: block;
  margin-top: 15px;
  color: #64748b;
}

.footer {
  text-align: center;
  padding: 34px;
  background: #050816;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 1050px) {
  .hero,
  .split {
    grid-template-columns: 1fr;
  }

  .grid.four,
  .ecosystem,
  .steps-premium {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .nav {
    padding: 15px 5%;
  }

  .hero,
  .section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero {
    padding-top: 75px;
  }

  .hero-proof,
  .grid.four,
  .ecosystem,
  .steps-premium {
    grid-template-columns: 1fr;
  }

  .road-item {
    grid-template-columns: 42px 1fr;
  }

  .road-item > span {
    grid-column: 2;
    text-align: left;
  }

  .evolution-road:before {
    left: 21px;
  }

  .road-dot {
    margin-left: 12px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    text-align: center;
  }
}

.pricing-table-wrap {
  overflow-x: auto;
  margin-top: 38px;
  border-radius: 24px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  box-shadow: 0 25px 70px rgba(15,23,42,.08);
}

.pricing-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  color: #0b1220;
}

.pricing-table th,
.pricing-table td {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
}

.pricing-table th:first-child,
.pricing-table td:first-child {
  text-align: left;
  font-weight: 800;
  position: sticky;
  left: 0;
  background: #ffffff;
}

.pricing-table th {
  background: #f8fafc;
  font-weight: 900;
}

.pricing-table tbody tr:hover {
  background: #f8fafc;
}

.evolution-compare-section {
  background:
    radial-gradient(circle at top right, rgba(124,60,255,.28), transparent 35%),
    radial-gradient(circle at bottom left, rgba(31,140,255,.18), transparent 34%),
    #050816;
  color: #ffffff;
}

.compare-header {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 50px;
  align-items: end;
  margin-bottom: 42px;
}

.compare-header h2 {
  max-width: 780px;
}

.compare-header h2 span {
  background: linear-gradient(135deg, #2f8cff, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.compare-header .lead {
  color: #c7d2e8;
}

.compare-header .lead strong {
  color: #60a5fa;
}

.compare-benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.13);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
}

.compare-benefits div {
  text-align: center;
}

.compare-benefits strong {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.compare-benefits p {
  color: #b6c2d6;
  font-size: 12px;
  line-height: 1.4;
}

.pricing-premium-wrap {
  overflow-x: auto;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.045);
  box-shadow: 0 40px 110px rgba(0,0,0,.35);
}

.pricing-premium {
  width: 100%;
  min-width: 1180px;
  border-collapse: collapse;
  color: #ffffff;
}

.pricing-premium th,
.pricing-premium td {
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.pricing-premium th:first-child,
.pricing-premium td:first-child {
  text-align: left;
  min-width: 220px;
  font-weight: 900;
  color: #ffffff;
  background: rgba(15,23,42,.72);
  position: sticky;
  left: 0;
  z-index: 2;
}

.pricing-premium thead th {
  background: rgba(15,23,42,.82);
}

.feature-title {
  color: #a78bfa !important;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.plan-head {
  min-width: 155px;
}

.plan-head .plan-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.plan-head strong {
  display: block;
  font-size: 16px;
  line-height: 1.15;
  text-transform: uppercase;
}

.plan-head span {
  display: block;
  color: #dbeafe;
  font-size: 13px;
  margin-top: 8px;
  font-weight: 500;
}

.pricing-premium tbody td {
  background: rgba(15,23,42,.45);
  font-weight: 700;
}

.pricing-premium tbody tr:hover td {
  background: rgba(31,140,255,.10);
}

.price-cell {
  color: #facc15;
  font-weight: 900 !important;
}

.yes,
.no {
  display: inline-flex;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 900;
}

.yes {
  color: #4ade80;
  border: 2px solid #4ade80;
}

.no {
  color: #cbd5e1;
  border: 2px solid #94a3b8;
}

.diagnostic { color: #22c55e; border-top: 4px solid #22c55e; }
.trader-essential { color: #3b82f6; border-top: 4px solid #3b82f6; }
.trader-professional { color: #8b5cf6; border-top: 4px solid #8b5cf6; }
.trader-advanced { color: #f59e0b; border-top: 4px solid #f59e0b; }
.trader-elite { color: #facc15; border-top: 4px solid #facc15; }
.blackforex-challenge { color: #ef4444; border-top: 4px solid #ef4444; }
.capital-program { color: #22d3ee; border-top: 4px solid #22d3ee; }

.compare-note {
  margin-top: 28px;
  padding: 22px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.compare-note strong {
  color: #dbeafe;
}

.compare-note p {
  color: #a7b4ca;
  margin-top: 4px;
}

.compare-note span {
  background: rgba(255,255,255,.08);
  padding: 10px 18px;
  border-radius: 999px;
  color: #cbd5e1;
  font-weight: 800;
  white-space: nowrap;
  text-transform: uppercase;
  font-size: 13px;
}

.compare-cta {
  margin-top: 28px;
  text-align: center;
}

.compare-cta .btn-primary {
  font-size: 18px;
  padding: 18px 34px;
  min-width: 420px;
}

.compare-cta p {
  color: #94a3b8;
  margin-top: 14px;
}

@media (max-width: 1050px) {
  .compare-header {
    grid-template-columns: 1fr;
  }

  .compare-benefits {
    grid-template-columns: repeat(2, 1fr);
  }

  .compare-note {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 620px) {
  .compare-benefits {
    grid-template-columns: 1fr;
  }

  .compare-cta .btn-primary {
    min-width: auto;
    width: 100%;
  }
}

.evolution-compare-section {
  background:
    radial-gradient(circle at top right, rgba(124,60,255,.28), transparent 35%),
    radial-gradient(circle at bottom left, rgba(31,140,255,.18), transparent 34%),
    #050816 !important;
  color: #ffffff !important;
}

.evolution-compare-section h2,
.evolution-compare-section p,
.evolution-compare-section td,
.evolution-compare-section th {
  color: #ffffff;
}

.evolution-compare-section .lead {
  color: #c7d2e8 !important;
}

.legal-consent {
  margin: 14px 0 18px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.legal-check {
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  color: #334155;
  cursor: pointer;
}

.legal-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex-shrink: 0;
  accent-color: #0ea5e9;
}

.legal-check span {
  display: inline;
}

.legal-check a {
  color: #0891b2;
  text-decoration: none;
  font-weight: 400;
}

.legal-check a:hover {
  text-decoration: underline;
}
/* ==========================================================
   BLACKFOREX - HERO REGISTRATION / WHATSAPP OPT-IN
   2026-09-01
   ========================================================== */

.hero-register-panel {
  width: 100%;
  max-width: 540px;
  margin-left: auto;
}

.hero-register-form {
  width: 100%;
  max-width: none;
  margin: 0;
}

.hero-register-form h3 {
  margin-top: 0;
}

.whatsapp-consent {
  margin-top: 10px;
}

.consent-help {
  display: block;
  margin-top: 6px;
  line-height: 1.45;
}

@media (max-width: 1050px) {
  .hero-register-panel {
    max-width: 680px;
    margin: 0 auto;
  }
}

@media (max-width: 680px) {
  .hero-register-panel {
    max-width: none;
  }
}


/* ==========================================================
   BLACKFOREX LANDING
   HERO REGISTRATION FORM - COMPACT V1
   Sólo afecta #registro-hero.
   ========================================================== */

#registro-hero {
  padding: 24px 26px 22px;
}

#registro-hero h3 {
  margin: 0 0 16px;
  font-size: 25px;
  line-height: 1.15;
}

/*
 * Reducimos el espacio vertical de labels y controles.
 */
#registro-hero label {
  margin-top: 7px;
  margin-bottom: 4px;
}

#registro-hero input:not([type="checkbox"]):not([type="hidden"]),
#registro-hero select {
  min-height: 42px;
  padding-top: 9px;
  padding-bottom: 9px;
}

/*
 * WhatsApp
 */
#registro-hero .phone-row {
  gap: 8px;
}

#registro-hero .field-help {
  margin-top: 4px;
  margin-bottom: 2px;
  font-size: 11px;
  line-height: 1.3;
}

/*
 * Consentimientos.
 * Conservamos ambos separados y perfectamente visibles,
 * pero reducimos espacio y peso visual.
 */
#registro-hero .legal-consent {
  margin: 10px 0 8px;
  padding: 0;
}

#registro-hero .legal-check {
  gap: 8px;
  line-height: 1.28;
}

#registro-hero .legal-check input[type="checkbox"] {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

#registro-hero .legal-check span {
  font-size: 11.5px;
  line-height: 1.32;
}

/*
 * Segundo consentimiento WhatsApp.
 * El texto auxiliar queda visualmente subordinado.
 */
#registro-hero .legal-consent small,
#registro-hero .consent-help {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 400;
}

/*
 * CTA
 */
#registro-hero button[type="submit"] {
  margin-top: 10px;
  min-height: 45px;
  padding: 11px 18px;
}

/*
 * Nota final.
 */
#registro-hero > small:last-child,
#registro-hero .registration-note {
  margin-top: 7px;
  font-size: 10.5px;
  line-height: 1.3;
}

/*
 * El panel puede aprovechar un poco más del ancho disponible.
 */
.hero-register-panel {
  width: 100%;
  max-width: 570px;
}

/*
 * Ajuste de equilibrio vertical del HERO.
 * No alteramos la estructura ni el formulario inferior.
 */
@media (min-width: 1051px) {

  .hero {
    align-items: center;
  }

  .hero-register-panel {
    align-self: center;
  }

}

/*
 * Tablet / móvil:
 * mantenemos el formulario cómodo para touch.
 */
@media (max-width: 1050px) {

  #registro-hero {
    padding: 24px;
  }

}

@media (max-width: 680px) {

  #registro-hero {
    padding: 20px 18px;
  }

  #registro-hero h3 {
    font-size: 23px;
  }

  #registro-hero .legal-check span {
    font-size: 12px;
  }

}


/* ==========================================================
   BLACKFOREX LANDING
   REGISTRATION FORMS - UNIFIED COMPACT STYLE V1

   Aplica a:
   - registro HERO
   - registro inferior

   No modifica estructura ni comportamiento.
   ========================================================== */

.js-registration-form {
  padding: 24px 26px 22px;
}

.js-registration-form h3 {
  margin: 0 0 16px;
  font-size: 25px;
  line-height: 1.15;
}

.js-registration-form label {
  margin-top: 7px;
  margin-bottom: 4px;
}

.js-registration-form
input:not([type="checkbox"]):not([type="hidden"]),
.js-registration-form select {
  min-height: 42px;
  padding-top: 9px;
  padding-bottom: 9px;
}

/* WhatsApp */

.js-registration-form .phone-row {
  gap: 8px;
}

.js-registration-form .field-help {
  margin-top: 4px;
  margin-bottom: 2px;
  font-size: 11px;
  line-height: 1.3;
}

/* Consentimientos */

.js-registration-form .legal-consent {
  margin: 10px 0 8px;
  padding: 0;
}

.js-registration-form .legal-check {
  gap: 8px;
  line-height: 1.28;
}

.js-registration-form
.legal-check input[type="checkbox"] {
  flex: 0 0 15px;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.js-registration-form .legal-check span {
  font-size: 11.5px;
  line-height: 1.32;
}

.js-registration-form .legal-consent small,
.js-registration-form .consent-help {
  display: block;
  margin-top: 4px;
  font-size: 10.5px;
  line-height: 1.3;
  font-weight: 400;
}

/* CTA */

.js-registration-form button[type="submit"] {
  margin-top: 10px;
  min-height: 45px;
  padding: 11px 18px;
}

/* Nota inferior */

.js-registration-form > small:last-child,
.js-registration-form .registration-note {
  margin-top: 7px;
  font-size: 10.5px;
  line-height: 1.3;
}

/* Móvil */

@media (max-width: 1050px) {

  .js-registration-form {
    padding: 24px;
  }

}

@media (max-width: 680px) {

  .js-registration-form {
    padding: 20px 18px;
  }

  .js-registration-form h3 {
    font-size: 23px;
  }

  .js-registration-form .legal-check span {
    font-size: 12px;
  }

}
