/* LEBIC Registration Forms CSS — Red + Yellow Gradient */

#cge-app-visitor, #cge-app-standard, #cge-app-sponsorship,
#cge-app-premium, #cge-app-executive {
  font-family: 'Inter', -apple-system, sans-serif;
  max-width: 780px;
  margin: 0 auto;
  color: #1a0000;
}
#cge-app-visitor *, #cge-app-standard *, #cge-app-sponsorship *,
#cge-app-premium *, #cge-app-executive * { box-sizing: border-box; }

/* HEADER */
.cge-wrap .cge-header {
  background: linear-gradient(135deg, #C0392B 0%, #B03A2E 70%, #C0882A 100%);
  border-radius: 16px 16px 0 0;
  padding: 28px 32px;
}
.cge-wrap .cge-header-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cge-wrap .cge-logo { height: 56px; background: #fff; padding: 7px 10px; border-radius: 10px; flex-shrink: 0; }
.cge-wrap .cge-header-text { flex: 1; }
.cge-wrap .cge-type-badge {
  display: inline-block; background: rgba(255,255,255,.15);
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px; margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,.25);
}
.cge-wrap .cge-header-text h2 {
  font-family: 'Poppins', sans-serif; color: #fff;
  font-size: clamp(16px, 2.8vw, 24px); font-weight: 700; margin: 0 0 6px; line-height: 1.2;
}
.cge-wrap .cge-header-text p { color: rgba(255,255,255,.7); font-size: 13px; margin: 0; }

/* FORM */
.cge-wrap .cge-form {
  background: #fff; border: 1px solid #f0d0d0;
  border-top: none; border-radius: 0 0 16px 16px;
  padding: 30px 32px; box-shadow: 0 8px 40px rgba(192,57,43,.1);
}
.cge-wrap .cge-section-title {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #C0392B;
  margin: 24px 0 14px; padding-bottom: 8px;
  border-bottom: 2px solid #fde8e8;
}
.cge-wrap .cge-section-title:first-child { margin-top: 0; }
.cge-wrap .cge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:560px) { .cge-wrap .cge-grid { grid-template-columns: 1fr; } }
.cge-wrap .cge-full { grid-column: 1 / -1; }
.cge-wrap .cge-field { display: flex; flex-direction: column; gap: 5px; }
.cge-wrap .cge-field label { font-size: 11px; font-weight: 700; color: #8b2020; letter-spacing: .06em; text-transform: uppercase; }
.cge-wrap .cge-field label span { color: #e53e3e; margin-left: 2px; }
.cge-wrap .cge-field input,
.cge-wrap .cge-field textarea,
.cge-wrap .cge-field select {
  padding: 11px 14px; border: 2px solid #f0d0d0;
  border-radius: 9px; font-family: inherit; font-size: 13px;
  color: #1a0000; background: #fff9f9; outline: none; width: 100%; transition: all .2s;
}
.cge-wrap .cge-field input:focus,
.cge-wrap .cge-field textarea:focus { border-color: #C0392B; background: #fff; box-shadow: 0 0 0 3px rgba(192,57,43,.08); }
.cge-wrap .cge-err { font-size: 10px; color: #e53e3e; display: none; }
.cge-wrap .cge-field.err .cge-err { display: block; }
.cge-wrap .cge-field.err input { border-color: #e53e3e; }

/* FILE */
.cge-wrap .cge-file-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.cge-wrap .cge-file-btn { display: inline-block; padding: 9px 16px; background: #C0392B; color: #fff; border-radius: 8px; font-size: 12px; font-weight: 600; cursor: pointer; transition: background .2s; white-space: nowrap; }
.cge-wrap .cge-file-btn:hover { background: #922b21; }
.cge-wrap .cge-file-input { display: none; }
.cge-wrap .cge-file-name { font-size: 12px; color: #888; }

/* SUBMIT */
.cge-wrap .cge-submit-row { margin-top: 28px; text-align: center; }
.cge-wrap .cge-submit-btn {
  background: linear-gradient(135deg, #C0392B 0%, #C0882A 100%);
  color: #fff; border: none; padding: 14px 40px;
  border-radius: 10px; font-family: inherit; font-size: 15px;
  font-weight: 700; cursor: pointer; transition: all .2s;
  box-shadow: 0 6px 20px rgba(192,57,43,.35);
  display: inline-flex; align-items: center; gap: 8px;
}
.cge-wrap .cge-submit-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(192,57,43,.45); }
.cge-wrap .cge-submit-btn.loading { position: relative; pointer-events: none; }
.cge-wrap .cge-submit-btn.loading .cge-btn-txt { opacity: 0; }
.cge-wrap .cge-submit-btn.loading::after { content: ''; position: absolute; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,.3); border-top-color: #fff; border-radius: 50%; animation: cgeSpin .7s linear infinite; }
@keyframes cgeSpin { to { transform: rotate(360deg); } }
.cge-wrap .cge-privacy { font-size: 11px; color: #999; text-align: center; margin-top: 12px; }

/* SUCCESS */
.cge-wrap .cge-success { background: #fff; border: 1px solid #f0d0d0; border-radius: 0 0 16px 16px; padding: 48px 32px; text-align: center; }
.cge-wrap .cge-success-inner { max-width: 480px; margin: 0 auto; }
.cge-wrap .cge-success-ring { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px; background: linear-gradient(135deg, #C0392B, #C0882A); display: flex; align-items: center; justify-content: center; animation: cgePop .5s cubic-bezier(.34,1.56,.64,1) both; box-shadow: 0 8px 28px rgba(192,57,43,.35); }
@keyframes cgePop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.cge-wrap .cge-success-ring svg { color: #fff; width: 32px; height: 32px; }
.cge-wrap .cge-success h3 { font-family: 'Poppins', sans-serif; font-size: 24px; color: #C0392B; margin-bottom: 8px; font-weight: 700; }
.cge-wrap .cge-success p { color: #666; font-size: 14px; margin-bottom: 20px; }
.cge-wrap .cge-ref-box { background: #fff9f9; border: 2px solid #f0d0d0; border-radius: 10px; padding: 14px 20px; font-size: 18px; font-weight: 700; color: #C0392B; letter-spacing: 1px; margin-bottom: 20px; }
.cge-wrap .cge-badge-link { display: inline-block; background: linear-gradient(135deg, #C0392B, #C0882A); color: #fff; padding: 14px 32px; border-radius: 10px; text-decoration: none; font-weight: 700; font-size: 15px; box-shadow: 0 6px 20px rgba(192,57,43,.35); transition: all .2s; margin-bottom: 16px; }
.cge-wrap .cge-badge-link:hover { transform: translateY(-2px); color: #fff; }
.cge-wrap .cge-success-note { font-size: 12px; color: #999; }

/* LOADER */
.cge-loader { position: fixed; inset: 0; background: rgba(255,245,245,.9); backdrop-filter: blur(6px); z-index: 99999; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px; opacity: 0; pointer-events: none; transition: opacity .3s; font-size: 13px; font-weight: 600; color: #C0392B; font-family: 'Inter', sans-serif; }
.cge-loader.show { opacity: 1; pointer-events: all; }
.cge-loader-ring { width: 48px; height: 48px; border-radius: 50%; border: 3px solid #f0d0d0; border-top-color: #C0392B; animation: cgeSpin .8s linear infinite; }
