
:root{
  --fc-lr-bg: var(--bg, #030619);
  --fc-lr-header: var(--header, #131921);
  --fc-lr-surface-1: var(--surface-1, rgba(255,255,255,0.04));
  --fc-lr-surface-2: var(--surface-2, rgba(255,255,255,0.06));
  --fc-lr-border: var(--border, rgba(255,255,255,0.10));
  --fc-lr-text: var(--text, #f5f7fa);
  --fc-lr-text-2: var(--text-2, #d0dbe7);
  --fc-lr-muted: var(--muted, #a7bdd2);
  --fc-lr-accent: var(--accent, #00d492);
  --fc-lr-accent-hover: var(--accent-hover, #00a471);
  --fc-lr-accent-strong: var(--accent-strong, #00835f);
  --fc-lr-accent-soft: var(--accent-soft, #63f2bc);
  --fc-lr-danger: #ff7a7a;
  --fc-lr-danger-bg: rgba(255, 122, 122, 0.10);
  --fc-lr-success-bg: rgba(0, 212, 146, 0.10);
}

.fc-lr-wrap{
  max-width:1100px;
  margin:40px auto;
  padding:0 16px;
  color:var(--fc-lr-text);
}

.fc-lr-header-card,
.fc-lr-legal-box,
.fc-lr-form fieldset,
.fc-lr-alert,
.fc-lr-consent-box{
  background:linear-gradient(180deg, var(--fc-lr-surface-2) 0%, var(--fc-lr-surface-1) 100%);
  border:1px solid var(--fc-lr-border);
  border-radius:18px;
  box-shadow:0 10px 30px rgba(0,0,0,.20);
  backdrop-filter: blur(8px);
}

.fc-lr-header-card{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:flex-start;
  padding:24px;
  margin-bottom:18px;
  flex-wrap:wrap;
}

.fc-lr-kicker{
  margin:0 0 8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--fc-lr-accent-soft);
}

.fc-lr-header-card h1{
  margin:0 0 8px;
  font-size:clamp(28px,4vw,42px);
  line-height:1.1;
  color:var(--fc-lr-text);
}

.fc-lr-note{
  margin:0;
  color:var(--fc-lr-muted);
}

.fc-lr-provider{
  display:grid;
  gap:6px;
  padding:14px 16px;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--fc-lr-border);
  border-radius:14px;
  min-width:280px;
}

.fc-lr-provider strong{
  font-size:16px;
  color:var(--fc-lr-text);
}

.fc-lr-provider span{
  font-size:14px;
  color:var(--fc-lr-text-2);
}

.fc-lr-legal-box{
  padding:18px 20px;
  margin-bottom:18px;
}

.fc-lr-legal-box p,
.fc-lr-privacy,
.fc-lr-form .description{
  color:var(--fc-lr-text-2);
}

.fc-lr-legal-box p{margin:0 0 8px}
.fc-lr-legal-box p:last-child{margin-bottom:0}

.fc-lr-grid{display:grid;gap:18px}
.fc-lr-grid-2{grid-template-columns:repeat(2,minmax(0,1fr));margin-bottom:18px}

.fc-lr-form fieldset{
  padding:22px;
  border:none;
  margin:0;
}

.fc-lr-form legend{
  font-size:20px;
  font-weight:700;
  margin-bottom:16px;
  padding:0;
  color:var(--fc-lr-text);
}

.fc-lr-form label{
  display:block;
  font-weight:600;
  margin:14px 0 8px;
  color:var(--fc-lr-text);
}

.fc-lr-form input[type=text],
.fc-lr-form input[type=email],
.fc-lr-form input[type=number],
.fc-lr-form textarea,
.fc-lr-form select{
  width:100%;
  box-sizing:border-box;
  padding:14px 15px;
  border:1px solid var(--fc-lr-border);
  border-radius:12px;
  background:rgba(255,255,255,0.06);
  color:var(--fc-lr-text);
  font-size:15px;
}

.fc-lr-form input::placeholder,
.fc-lr-form textarea::placeholder{
  color:var(--fc-lr-muted);
  opacity:1;
}

.fc-lr-form input:-webkit-autofill,
.fc-lr-form input:-webkit-autofill:hover,
.fc-lr-form input:-webkit-autofill:focus,
.fc-lr-form textarea:-webkit-autofill,
.fc-lr-form textarea:-webkit-autofill:hover,
.fc-lr-form textarea:-webkit-autofill:focus{
  -webkit-text-fill-color:var(--fc-lr-text) !important;
  caret-color:var(--fc-lr-text) !important;
  -webkit-box-shadow:0 0 0 1000px rgba(255,255,255,0.06) inset !important;
  box-shadow:0 0 0 1000px rgba(255,255,255,0.06) inset !important;
  transition: background-color 9999s ease-out 0s !important;
}

.fc-lr-form textarea{resize:vertical;min-height:110px}

.fc-lr-form input:focus,
.fc-lr-form textarea:focus,
.fc-lr-form select:focus{
  outline:none;
  border-color:var(--fc-lr-accent);
  box-shadow:0 0 0 4px rgba(0,212,146,.12);
}

.fc-lr-radio-group{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  margin-top:10px;
}

.fc-lr-radio-group label,
.fc-lr-inline-check{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:500;
  color:var(--fc-lr-text-2);
}

.fc-lr-consent-box{
  margin-top:18px;
  padding:18px 20px;
}

.fc-lr-actions{margin-top:20px;display:flex;justify-content:flex-start}

.fc-lr-btn,
.fc-lr-btn-secondary,
.fc-lr-inline-badge,
.fc-lr-floating-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  border:none;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:background-color .2s ease,color .2s ease,transform .2s ease, box-shadow .2s ease;
}

.fc-lr-btn,
.fc-lr-btn-secondary{
  padding:14px 22px;
  background:var(--fc-lr-accent);
  color:#ffffff;
  box-shadow:0 10px 24px rgba(0,212,146,.22);
}

.fc-lr-btn:hover,
.fc-lr-btn-secondary:hover,
.fc-lr-inline-badge:hover,
.fc-lr-floating-badge:hover{
  background:var(--fc-lr-accent-hover);
  color:#062e25;
  transform:translateY(-1px);
}

.fc-lr-alert{padding:16px 18px;margin:0 0 18px}
.fc-lr-alert ul{margin:0;padding-left:20px}
.fc-lr-alert-success{border-color:rgba(0,212,146,.28);background:var(--fc-lr-success-bg);color:var(--fc-lr-text)}
.fc-lr-alert-error{border-color:rgba(255,122,122,.24);background:var(--fc-lr-danger-bg);color:var(--fc-lr-text)}
.fc-lr-alert-error li{color:var(--fc-lr-text)}
.fc-lr-hp{position:absolute!important;left:-9999px!important;opacity:0!important;pointer-events:none!important}

.fc-lr-inline-badge,
.fc-lr-floating-badge{
  padding:12px 18px;
  background:var(--fc-lr-accent);
  color:#062e25;
  box-shadow:0 14px 40px rgba(0,0,0,.24);
}

.fc-lr-floating-badge{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
}

.fc-lr-wrap a{
  color: #fff;
}

.fc-lr-wrap a:hover{
  color:var(--fc-lr-accent);
}

.fc-lr-minor-fields[hidden]{display:none!important}

@media (max-width: 782px){
  .fc-lr-grid-2{grid-template-columns:1fr}
  .fc-lr-header-card{padding:18px}
  .fc-lr-form fieldset{padding:18px}
  .fc-lr-floating-badge{left:12px;right:12px;bottom:12px}
}

@media print{
  body,
  .fc-lr-wrap{
    background:#fff !important;
    color:#111827 !important;
  }

  .fc-lr-header-card,
  .fc-lr-legal-box,
  .fc-lr-form fieldset,
  .fc-lr-alert,
  .fc-lr-consent-box,
  .fc-lr-provider{
    background:#fff !important;
    color:#111827 !important;
    border:1px solid #cbd5e1 !important;
    box-shadow:none !important;
    backdrop-filter:none !important;
  }

  .fc-lr-header-card h1,
  .fc-lr-form legend,
  .fc-lr-form label,
  .fc-lr-provider strong,
  .fc-lr-wrap a,
  .fc-lr-kicker{
    color:#111827 !important;
  }

  .fc-lr-note,
  .fc-lr-provider span,
  .fc-lr-legal-box p,
  .fc-lr-privacy,
  .fc-lr-radio-group label,
  .fc-lr-inline-check{
    color:#334155 !important;
  }

  .fc-lr-form input,
  .fc-lr-form textarea,
  .fc-lr-form select{
    color:#111827 !important;
    background:#fff !important;
    border:1px solid #cbd5e1 !important;
  }

  .fc-lr-btn,
  .fc-lr-btn-secondary,
  .fc-lr-inline-badge,
  .fc-lr-floating-badge{
    display:none !important;
  }
}
