/* =============================================================================
   en2 Events – Frontend Styles

   Alle Farb-Variablen werden per inline CSS vom Plugin gesetzt.
   Sie können auch im Theme überschrieben werden, z. B.:

     .en2-events-list { --en2-color-primary: var(--wp--preset--color--primary); }

   Verfügbare WordPress-Theme-Farbvariablen (sofern das Theme theme.json nutzt):
     --wp--preset--color--primary
     --wp--preset--color--secondary
     --wp--preset--color--foreground
     --wp--preset--color--background
     --wp--preset--color--base          (je nach Theme-Definition)
   ============================================================================= */

:root {
  /* --- Konfigurierbar über Plugin-Einstellungen --- */
  --en2-color-primary:        #e30613;  /* Kalender-Events, Buttons, Heute-Highlight  */
  --en2-color-primary-text:   #ffffff;  /* Schrift auf Primärfarbe                    */
  --en2-color-secondary:      #555555;  /* Sekundär-Buttons                           */
  --en2-color-secondary-text: #ffffff;  /* Schrift auf Sekundärfarbe                  */
  --en2-color-stripe:         #c8c8c8;  /* Seitenstreifen (Akkordion, Boxen, 7-Tage)  */

  /* --- Strukturell (überschreibbar, aber nicht im Settings-Panel) --- */
  --en2-text:        #333333;
  --en2-text-muted:  #666666;
  --en2-border:      #dcdcde;
  --en2-bg-light:    #f7f7f7;
  --en2-radius:      4px;
}

/* -----------------------------------------------------------------------
   Event-Detailseite — Zwei-Spalten-Layout
----------------------------------------------------------------------- */

/* Seiten-Abstand oben (ersetzt fehlendes .main-grid margin-top) */
.en2-event-detail {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}

/* Hero-Bild */
.en2-event-hero {
  margin-bottom: 24px;
  border-radius: var(--en2-radius);
  overflow: hidden;
  max-height: 380px;
}

.en2-event-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Header: Titel + Key-Info-Leiste */
.en2-event-header {
  margin-bottom: 24px;
}

/* Key-Info-Leiste */
.en2-key-info-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 10px;
  padding: 12px 16px;
  background: var(--en2-bg-light);
  border-radius: var(--en2-radius);
  border-left: 4px solid var(--en2-color-primary);
}

.en2-key-info-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--en2-text);
  white-space: nowrap;
}

.en2-key-info-item i {
  color: var(--en2-color-primary);
  font-size: 0.82rem;
  flex-shrink: 0;
}

/* Zwei-Spalten-Body */
.en2-event-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: stretch;
}

@media (min-width: 768px) {
  .en2-event-body {
    grid-template-columns: 2fr 1fr;
  }
}

/* Hauptinhalt */
.en2-event-main {
  background: #fff;
  border: 1px solid var(--en2-border);
  border-radius: var(--en2-radius);
  padding: 20px 24px;
  height: 100%;
  box-sizing: border-box;
}

.en2-event-main > .en2-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--en2-text-muted);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--en2-border);
}

.en2-event-content {
  margin-bottom: 8px;
}

/* Sidebar */
.en2-event-sidebar {
  display: flex;
  flex-direction: column;
}

.en2-sidebar-box {
  background: #fff;
  border: 1px solid var(--en2-border);
  border-radius: var(--en2-radius);
  padding: 16px;
  margin-bottom: 16px;
}

.en2-sidebar-box:last-child {
  margin-bottom: 0;
}

/* Section-Titel in Sidebar etwas kompakter */
.en2-sidebar-box .en2-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--en2-text-muted);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--en2-border);
}

/* Veranstaltungsort-Block unterhalb des Zwei-Spalten-Bereichs */
.en2-venue-box {
  margin-top: 32px;
}

/* Akkordion-Items innerhalb einer Sidebar-Box: keine eigene Karte */
.en2-sidebar-box .en2-accordion {
  gap: 0;
}

.en2-sidebar-box .en2-accordion-item {
  background: transparent;
  border: none;
  border-radius: 0;
  border-bottom: 1px solid var(--en2-border);
  overflow: visible;
}

.en2-sidebar-box .en2-accordion-item:last-child {
  border-bottom: none;
}

.en2-sidebar-box .en2-accordion-summary {
  background: transparent;
  padding-left: 0;
  padding-right: 0;
}

.en2-sidebar-box .en2-accordion-summary:hover {
  background: var(--en2-bg-light);
  margin-left: -16px;
  margin-right: -16px;
  padding-left: 16px;
  padding-right: 16px;
}

.en2-sidebar-box .en2-accordion-item[open] .en2-accordion-summary {
  background: transparent;
}

.en2-sidebar-box .en2-accordion-body {
  padding-left: 0;
  padding-right: 0;
}

.en2-section-title {
  margin: 0 0 12px;
  font-size: 1.1em;
  color: var(--en2-text);
}

/* -----------------------------------------------------------------------
   Akkordion – Termine
----------------------------------------------------------------------- */

.en2-accordion {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.en2-accordion-item {
  border: 1px solid var(--en2-border);
  border-radius: var(--en2-radius);
  overflow: hidden;
  background: #fff;
}

.en2-accordion-item[open] {
  /*
  border-left: 3px solid var(--en2-color-stripe);
  */
}

.en2-accordion-item--past {
  opacity: 0.6;
}

/* Summary = klickbarer Akkordion-Header */
.en2-accordion-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-weight: 600;
  font-size: 15px;
  color: var(--en2-text);
  background: var(--en2-bg-light);
  transition: background 0.15s;
}

.en2-accordion-summary::-moz-list-bullet      { display: none; }
.en2-accordion-summary::-webkit-details-marker { display: none; }

.en2-accordion-summary:hover {
  background: #ececec;
}

.en2-accordion-item[open] .en2-accordion-summary {
  background: #e8e8e8;
  color: var(--en2-text);
}

.en2-accordion-date {
  flex: 1;
}

/* Pfeil-Icon */
.en2-accordion-arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  position: relative;
}

.en2-accordion-arrow::before,
.en2-accordion-arrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 8px;
  height: 2px;
  background: var(--en2-text-muted);
  border-radius: 1px;
  transition: transform 0.2s;
}

.en2-accordion-arrow::before {
  right: 9px;
  transform: translateY(-50%) rotate(45deg);
}

.en2-accordion-arrow::after {
  right: 4px;
  transform: translateY(-50%) rotate(-45deg);
}

.en2-accordion-item[open] .en2-accordion-arrow::before {
  transform: translateY(-50%) rotate(-45deg);
}

.en2-accordion-item[open] .en2-accordion-arrow::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Akkordion-Body */
.en2-accordion-body {
  padding: 16px;
  border-top: 1px solid var(--en2-border);
}

.en2-accordion-past-note,
.en2-accordion-no-reg {
  margin: 0;
  color: var(--en2-text-muted);
  font-style: italic;
  font-size: 14px;
}

.en2-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: bold;
  text-transform: uppercase;
}

.en2-badge--past {
  background: #eee;
  color: #666;
}

.en2-badge--highlight {
  background: #f5c518;
  color: #333;
}

.en2-badge--sponsored {
  background: #0073aa;
  color: #fff;
}

/* Badges-Zeile auf der Event-Detailseite */
.en2-event-badges {
  margin: 8px 0 16px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  align-items: center;
}

/* Altersempfehlung */
.en2-age-hint {
  font-size: 13px;
  color: var(--en2-text-muted);
  margin: -8px 0 16px;
}

/* Preisliste auf der Event-Detailseite */
.en2-event-prices-box {
  margin: 16px 0;
  padding: 0;
}

.en2-event-prices-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.en2-event-price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--en2-border);
  font-size: 14px;
  color: var(--en2-text);
}

.en2-event-price-item:last-child {
  border-bottom: none;
}

.en2-event-price-amount {
  font-weight: bold;
}

/* Highlight-Hervorhebung in der Listenansicht */
.en2-event-item--highlight {
  border-color: #f5c518;
  background: #fffdf0;
}

/* Titel-Zeile mit Badges in der Listenansicht */
.en2-event-title-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

/* -----------------------------------------------------------------------
   Anmeldeformular – Tabs (Anmelden / Erinnern lassen)
----------------------------------------------------------------------- */

.en2-form-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 0;
  border-bottom: 2px solid var(--en2-border);
  padding-bottom: 0;
}

.en2-form-tab-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--en2-radius) var(--en2-radius) 0 0;
  border: 1px solid transparent;
  border-bottom: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--en2-text-muted);
  background: transparent;
  margin-bottom: -2px;
  transition: color 0.15s, background 0.15s;
}

.en2-form-tab-label input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.en2-form-tab-label:has(input:checked) {
  color: var(--en2-color-primary);
  background: #fff;
  border-color: var(--en2-border);
  border-bottom-color: #fff;
}

.en2-form-tab-label:hover {
  color: var(--en2-text);
}

/* Panel-Sichtbarkeit via CSS-Klassen (nicht via [hidden]-Attribut, da Theme-CSS es überschreibt) */
.en2-form-tab-panel {
  display: none;
}

.en2-form-tab-panel.en2--active {
  display: block;
  border: 1px solid var(--en2-border);
  border-top: none;
  border-radius: 0 0 var(--en2-radius) var(--en2-radius);
  padding: 16px;
  margin-bottom: 16px;
}

/* Opt-In Zeile (versteckt bis E-Mail eingegeben) */
.en2-opt-in-wrap {
  display: none;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #f0f6ff;
  border: 1px solid #c7dcf5;
  border-radius: var(--en2-radius);
}

.en2-opt-in-wrap.en2--visible {
  display: block;
}

.en2-opt-in-wrap .en2-option-label {
  font-size: 13px;
  color: #2c4a72;
}

.en2-reminder-hint {
  font-size: 14px;
  color: var(--en2-text);
  margin: 0 0 14px;
}

/* Hinweis für eingeloggte Nutzer */
.en2-user-hint {
  margin: 0 0 14px;
  padding: 8px 12px;
  background: var(--en2-bg-light);
  border-radius: var(--en2-radius);
  font-size: 13px;
  color: var(--en2-text-muted);
}

/* -----------------------------------------------------------------------
   Anmeldeformular
----------------------------------------------------------------------- */

.en2-register-form-wrap {
  margin-top: 16px;
}

.en2-register-form .en2-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.en2-form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.en2-form-field label {
  font-weight: 600;
  font-size: 14px;
  color: var(--en2-text);
}

.en2-form-field input[type="text"],
.en2-form-field input[type="email"] {
  padding: 8px 12px;
  border: 1px solid var(--en2-border);
  border-radius: var(--en2-radius);
  font-size: 14px;
  line-height: 1.4;
  width: 100%;
  box-sizing: border-box;
}

.en2-form-field input:focus {
  outline: none;
  border-color: var(--en2-color-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--en2-color-primary) 20%, transparent);
}

.en2-required { color: #c0392b; }
.en2-optional { color: var(--en2-text-muted); font-weight: normal; font-size: 12px; }

.en2-form-options {
  margin-bottom: 16px;
}

.en2-form-options .en2-option-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  font-size: 14px;
  cursor: pointer;
  color: var(--en2-text);
}

/* Deaktiviertes Formular nach erfolgreicher Anmeldung */
.en2-register-form--done input,
.en2-register-form--done textarea,
.en2-register-form--done input[type="checkbox"] {
  opacity: 0.5;
  cursor: not-allowed;
  background: var(--en2-bg-light);
}

.en2-register-form--done .en2-option-label {
  cursor: not-allowed;
  opacity: 0.5;
}

.en2-register-form--done .en2-btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Buttons */
.en2-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--en2-color-primary);
  color: var(--en2-color-primary-text);
  border: none;
  border-radius: var(--en2-radius);
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.15s;
}

.en2-btn:hover {
  opacity: 0.88;
  color: var(--en2-color-primary-text);
}

.en2-btn--secondary {
  background: var(--en2-color-secondary);
  color: var(--en2-color-secondary-text);
}

.en2-btn--secondary:hover {
  color: var(--en2-color-secondary-text);
}

/* Hinweise */
.en2-notice {
  padding: 10px 16px;
  border-radius: var(--en2-radius);
  margin-bottom: 12px;
  font-size: 14px;
}

.en2-notice--success {
  background: #edfaed;
  border: 1px solid #5cb85c;
  color: #2d6a2d;
}

.en2-notice--error {
  background: #fdf2f2;
  border: 1px solid #d63638;
  color: #8a1f20;
}

/* -----------------------------------------------------------------------
   Listenansicht [en2_events_list]
----------------------------------------------------------------------- */

.en2-events-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.en2-event-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 12px;
  border: 1px solid var(--en2-border);
  border-radius: var(--en2-radius);
  background: #fff;
  transition: border-color 0.15s;
}

.en2-event-item:hover {
  border-color: var(--en2-color-stripe);
}

.en2-event-date {
  min-width: 48px;
  text-align: center;
  background: var(--en2-color-primary);
  color: var(--en2-color-primary-text);
  border-radius: var(--en2-radius);
  padding: 6px 4px;
  flex-shrink: 0;
}

.en2-date-day {
  display: block;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}

.en2-date-month {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.en2-event-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.en2-event-title {
  font-weight: bold;
  font-size: 15px;
  color: var(--en2-text);
  text-decoration: none;
}

.en2-event-title:hover {
  text-decoration: underline;
}

.en2-event-time,
.en2-event-location {
  font-size: 13px;
  color: var(--en2-text-muted);
}

.en2-no-events {
  font-style: italic;
  color: var(--en2-text-muted);
}

/* -----------------------------------------------------------------------
   Tagesansicht [en2_events_day]
----------------------------------------------------------------------- */

.en2-events-day {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.en2-events-day .en2-calendar-nav {
  margin-bottom: 0;
}

/* -----------------------------------------------------------------------
   Wochennavigation [en2_events_weeknav]
----------------------------------------------------------------------- */

.en2-weeknav-wrap {
  overflow: hidden;
  display: grid;
}

.en2-weeknav-wrap > .en2-calendar--weeknav {
  grid-row: 1;
  grid-column: 1;
}

.en2-weeknav-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--en2-text);
  min-height: 0;
  transition: background 0.15s;
}

.en2-weeknav-col:hover {
  background: color-mix(in srgb, var(--en2-color-primary) 8%, transparent);
}

.en2-calendar--weeknav .en2-week-day-header {
  border-radius: var(--en2-radius);
  border-bottom: none;
  margin: 6px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.en2-weeknav-col-dot {
  font-size: 8px;
  color: var(--en2-color-primary);
  margin: 0 0 5px;
}

/* -----------------------------------------------------------------------
   7-Tage-Ansicht [en2_events_7days]
----------------------------------------------------------------------- */

.en2-events-7days {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.en2-7days-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  border-left: 3px solid var(--en2-color-stripe);
  background: var(--en2-bg-light);
  border-radius: 0 var(--en2-radius) var(--en2-radius) 0;
}

.en2-7days-date {
  font-size: 12px;
  color: var(--en2-text-muted);
  min-width: 110px;
  flex-shrink: 0;
}

.en2-7days-title {
  font-weight: bold;
  color: var(--en2-text);
  text-decoration: none;
  flex: 1;
}

.en2-7days-title:hover {
  text-decoration: underline;
}

.en2-7days-time,
.en2-7days-location {
  font-size: 12px;
  color: var(--en2-text-muted);
}

/* -----------------------------------------------------------------------
   Störer [en2_events_today]
----------------------------------------------------------------------- */

.en2-events-today {
  position: relative;
  overflow: hidden;
  background: var(--en2-color-primary);
  color: var(--en2-color-primary-text);
  padding: 20px 24px;
  border-radius: var(--en2-radius);
  margin: 16px 0;
}

/* Wasserzeichen "HEUTE" im Hintergrund */
.en2-events-today::after {
  content: 'HEUTE';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%) rotate(-12deg);
  font-size: 72px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
  color: var(--en2-color-primary-text);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.en2-today-header {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.75;
  margin-bottom: 6px;
}

.en2-today-item {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.en2-today-title {
  font-weight: bold;
  font-size: 17px;
  color: var(--en2-color-primary-text);
  text-decoration: none;
  line-height: 1.3;
}

.en2-today-title:hover {
  text-decoration: underline;
}

.en2-today-time {
  font-size: 13px;
  opacity: 0.8;
  white-space: nowrap;
}

/* -----------------------------------------------------------------------
   Monatskalender [en2_events_calendar]
----------------------------------------------------------------------- */

.en2-calendar--month {
  overflow: hidden;
}

.en2-calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 8px;
  font-size: 16px;
}

.en2-cal-prev,
.en2-cal-next {
  font-size: 24px;
  color: var(--en2-text);
  text-decoration: none;
  padding: 0 8px;
  line-height: 1;
}

.en2-cal-prev:hover,
.en2-cal-next:hover {
  color: var(--en2-text-muted);
}

.en2-cal-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.en2-cal-table th,
.en2-cal-table td {
  width: calc(100% / 7);
}

.en2-cal-table th {
  text-align: center;
  padding: 4px;
  font-size: 12px;
  color: var(--en2-text-muted);
  border-bottom: 2px solid var(--en2-border);
}

.en2-cal-table td {
  text-align: center;
  vertical-align: top;
  padding: 6px 4px;
  border: 1px solid var(--en2-border);
  min-height: 64px;
  font-size: 13px;
}

.en2-cal-empty {
  background: var(--en2-bg-light);
}

.en2-cal-today {
  background: color-mix(in srgb, var(--en2-color-primary) 8%, transparent);
}

.en2-cal-day-num {
  display: block;
  font-weight: bold;
  margin-bottom: 2px;
  color: var(--en2-text);
}

.en2-cal-today .en2-cal-day-num {
  font-weight: 800;
}

.en2-cal-event-dot {
  display: block;
  background: var(--en2-color-primary);
  color: var(--en2-color-primary-text);
  font-size: 11px;
  border-radius: 3px;
  padding: 1px 4px;
  margin: 1px 0;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* -----------------------------------------------------------------------
   Wochenkalender [en2_events_week]
----------------------------------------------------------------------- */

.en2-week-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border: 1px solid var(--en2-border);
  border-radius: var(--en2-radius);
  overflow: hidden;
}

.en2-week-col {
  border-right: 1px solid var(--en2-border);
}

.en2-week-col:last-child {
  border-right: none;
}

.en2-week-today {
  background: color-mix(in srgb, var(--en2-color-primary) 6%, transparent);
}

.en2-week-day-header {
  text-align: center;
  padding: 8px 4px;
  font-size: 12px;
  font-weight: bold;
  color: var(--en2-text);
  background: var(--en2-bg-light);
  border-bottom: 1px solid var(--en2-border);
}

.en2-week-today .en2-week-day-header {
  background: var(--en2-color-primary);
  color: var(--en2-color-primary-text);
}

.en2-week-event {
  display: block;
  margin: 4px;
  padding: 3px 6px;
  background: var(--en2-color-primary);
  color: var(--en2-color-primary-text);
  font-size: 11px;
  border-radius: 3px;
  text-decoration: none;
}

.en2-week-event small {
  display: block;
  opacity: 0.85;
}

/* -----------------------------------------------------------------------
   Responsive
----------------------------------------------------------------------- */

@media (max-width: 600px) {
  .en2-register-form .en2-form-row {
    grid-template-columns: 1fr;
  }

  .en2-week-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .en2-cal-event-dot {
    display: none;
  }

  .en2-cal-has-events::after {
    content: '●';
    display: block;
    font-size: 8px;
    color: var(--en2-text-muted);
  }
}

/* hn-register form inside reminder panel */
.en2-reminder-register__intro {
  font-family: "Barlow Condensed", "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 12px 0 0;
  color: var(--en2-text);
}

.en2-reminder-register .hn-register-form-wrap {
  margin-top: 12px;
}

.en2-reminder-register .hn-form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--en2-text);
}

.en2-reminder-register .hn-form-field input[type="email"] {
  display: block;
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--en2-border, #d1d5db);
  border-radius: var(--en2-radius, 6px);
  background: #ffffff;
  font-size: 14px;
  line-height: 1.4;
  box-sizing: border-box;
  color: var(--en2-text);
}

.en2-reminder-register .hn-form-field input[type="email"]:focus {
  outline: none;
  border-color: var(--en2-color-primary);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--en2-color-primary) 20%, transparent);
}

.en2-reminder-register .hn-btn-primary {
  margin-top: 8px;
}
