
.cr-wrap{
  --cr-purple:#5b35f5;
  --cr-violet:#713ee8;
  --cr-pink:#d94b9a;
  --cr-coral:#f26772;
  --cr-orange:#ff9348;
  --cr-text:#171727;
  --cr-muted:#6f778b;
  --cr-line:#dce1ec;
  --cr-soft:#f7f5ff;
  width:100%;
  max-width:1040px;
  margin:36px auto;
  padding:0 18px;
  box-sizing:border-box;
  font-family:inherit;
  color:var(--cr-text);
}
.cr-wrap *{box-sizing:border-box}
.cr-form{
  background:#fff;
  border:1px solid rgba(31,35,48,.08);
  border-radius:20px;
  padding:38px 42px 30px;
  box-shadow:0 18px 55px rgba(35,27,85,.10);
}
.cr-form-head{text-align:center;margin-bottom:30px}
.cr-conference-logo{
  display:block;
  width:min(100%, 360px);
  height:auto;
  max-height:105px;
  object-fit:contain;
  margin:0 auto 20px;
}
.cr-form h2{
  margin:0 0 15px;
  font-size:34px;
  line-height:1.2;
  font-weight:750;
  color:var(--cr-text);
}
.cr-period{
  display:flex;
  align-items:center;
  justify-content:center;
  flex-wrap:wrap;
  gap:7px;
  font-size:15px;
  color:#4e566a;
}
.cr-period strong{color:var(--cr-purple)}
.cr-calendar{
  display:inline-flex;
  width:30px;height:30px;
  align-items:center;justify-content:center;
  border-radius:9px;
  background:#f0edff;
  color:var(--cr-purple);
  font-size:14px;
}
.cr-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:22px 24px;
}
.cr-field{
  display:block;
  margin:0;
  font-size:14px;
  line-height:1.4;
  font-weight:650;
  color:#252638;
}
.cr-field>span,.cr-section-title>span{color:#e22f45}
.cr-full{grid-column:1/-1}
.cr-field input{
  display:block;
  width:100%;
  height:52px;
  margin-top:8px;
  padding:0 16px;
  border:1px solid var(--cr-line);
  border-radius:10px;
  outline:none;
  background:#fff;
  color:var(--cr-text);
  font:inherit;
  font-weight:400;
  box-shadow:0 1px 2px rgba(16,24,40,.02);
  transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}
.cr-field input::placeholder{color:#98a0b3}
.cr-field input:hover{border-color:#c8c0f5}
.cr-field input:focus{
  border-color:var(--cr-purple);
  box-shadow:0 0 0 4px rgba(91,53,245,.10);
}
.cr-section{margin-top:24px}
.cr-section-title{
  margin-bottom:9px;
  font-size:14px;
  font-weight:700;
}
.cr-choice-grid{display:grid;gap:12px}
.cr-choice-grid-3{grid-template-columns:repeat(3,minmax(0,1fr))}
.cr-choice-grid-2{grid-template-columns:repeat(2,minmax(0,1fr))}
.cr-choice{display:block;margin:0;cursor:pointer}
.cr-choice input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.cr-choice-box{
  min-height:58px;
  padding:10px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border:1px solid var(--cr-line);
  border-radius:10px;
  background:#fff;
  color:#252638;
  font-size:14px;
  font-weight:600;
  transition:all .2s ease;
}
.cr-choice:hover .cr-choice-box{
  border-color:#bfb3ff;
  background:#faf9ff;
  transform:translateY(-1px);
}
.cr-choice input:checked + .cr-choice-box{
  border-color:var(--cr-purple);
  background:linear-gradient(135deg,rgba(91,53,245,.075),rgba(217,75,154,.035));
  box-shadow:0 0 0 3px rgba(91,53,245,.08);
  color:#4c2ee3;
}
.cr-choice-icon{
  width:32px;height:32px;
  display:inline-flex;
  align-items:center;justify-content:center;
  border-radius:9px;
  background:#f2efff;
  color:var(--cr-purple);
  font-size:12px;
  font-weight:800;
}
.cr-meal.cr-veg input:checked + .cr-choice-box{
  border-color:#52b95f;background:#f6fcf6;color:#267d31;box-shadow:0 0 0 3px rgba(82,185,95,.08)
}
.cr-meal.cr-nonveg input:checked + .cr-choice-box{
  border-color:#f1646b;background:#fff8f8;color:#c63840;box-shadow:0 0 0 3px rgba(241,100,107,.08)
}
.cr-note{
  margin:8px 2px 0;
  color:var(--cr-muted);
  font-size:12px;
  line-height:1.5;
}
.cr-fee-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin:26px 0 18px;
  padding:18px 20px;
  border:1px solid #ddd7ff;
  border-radius:13px;
  background:linear-gradient(135deg,#faf9ff,#fff8fb);
}
.cr-fee-left{display:flex;align-items:center;gap:13px}
.cr-fee-left strong{display:block;font-size:15px}
.cr-fee-left small{display:block;margin-top:3px;color:var(--cr-muted);font-size:12px;font-weight:400}
.cr-fee-icon{
  width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg,var(--cr-purple),var(--cr-violet));
  color:#fff;font-size:20px;font-weight:800;
  box-shadow:0 7px 18px rgba(91,53,245,.22);
}
.cr-fee-value{
  white-space:nowrap;
  font-size:25px;
  line-height:1;
  font-weight:800;
  color:#171727;
}
.cr-consent{
  display:flex!important;
  align-items:flex-start;
  gap:9px;
  margin:0 0 16px!important;
  color:#5e6577;
  font-size:13px;
  font-weight:400!important;
}
.cr-consent input{margin-top:2px}
.cr-pay-btn{
  position:relative;
  width:100%;
  min-height:54px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:15px;
  padding:13px 22px;
  border:0;
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  color:#fff;
  background:linear-gradient(100deg,#5b35f5 0%,#9b3dd4 34%,#e45189 68%,#ff9348 100%);
  box-shadow:0 10px 24px rgba(125,54,211,.20);
  font:inherit;
  font-size:15px;
  font-weight:750;
  transition:transform .2s ease,box-shadow .2s ease,filter .2s ease;
}
.cr-pay-btn::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0);
  transition:background .2s ease;
}
.cr-pay-btn span{position:relative;z-index:1}
.cr-pay-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(125,54,211,.25);
  filter:saturate(.92) brightness(1.08);
}
.cr-pay-btn:hover::before{background:rgba(255,255,255,.10)}
.cr-pay-btn:active{transform:translateY(0)}
.cr-pay-btn:disabled{opacity:.65;cursor:not-allowed;transform:none}
.cr-arrow{font-size:22px;font-weight:400;transition:transform .2s ease}
.cr-pay-btn:hover .cr-arrow{transform:translateX(5px)}
.cr-secure{
  margin-top:12px;
  text-align:center;
  color:#8a91a3;
  font-size:12px;
}
#cr-message{margin-top:15px}
.cr-success,.cr-error{padding:13px 15px;border-radius:10px;font-size:14px}
.cr-success{background:#edf9ef;color:#216c2b;border:1px solid #c9ebcf}
.cr-error{background:#fff0f1;color:#a32d37;border:1px solid #f2c7cb}
.cr-benefits{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
  margin-top:18px;
}
.cr-benefits>div{
  min-height:82px;
  padding:17px 18px;
  border:1px solid rgba(91,53,245,.07);
  border-radius:14px;
  background:linear-gradient(135deg,#fbfaff,#fff);
  box-shadow:0 8px 28px rgba(35,27,85,.045);
}
.cr-benefits strong{display:block;margin-bottom:4px;font-size:13px}
.cr-benefits span{display:block;color:var(--cr-muted);font-size:12px;line-height:1.45}

@media(max-width:767px){
  .cr-wrap{margin:20px auto;padding:0 12px}
  .cr-form{padding:24px 18px 20px;border-radius:15px}
  .cr-form h2{font-size:26px}
  .cr-period{font-size:13px}
  .cr-grid{grid-template-columns:1fr;gap:17px}
  .cr-full{grid-column:auto}
  .cr-choice-grid-3{grid-template-columns:1fr}
  .cr-choice-grid-2{grid-template-columns:1fr 1fr}
  .cr-choice-box{min-height:52px;padding:9px 10px;font-size:13px}
  .cr-fee-box{align-items:flex-start;padding:15px;gap:12px}
  .cr-fee-value{font-size:20px}
  .cr-benefits{grid-template-columns:1fr}
}
@media(max-width:430px){
  .cr-form{padding:22px 14px 18px}
  .cr-form h2{font-size:23px}
  .cr-choice-grid-2{grid-template-columns:1fr}
  .cr-fee-box{flex-direction:column}
  .cr-fee-value{padding-left:55px}
}


/* v1.1.1 icon refinements */
.cr-calendar.dashicons{
  font-size:17px;
  width:30px;
  height:30px;
  line-height:30px;
}
.cr-choice-icon.dashicons{
  width:34px;
  height:34px;
  line-height:34px;
  font-size:19px;
  flex:0 0 34px;
}
.cr-fee-icon.dashicons{
  width:42px;
  height:42px;
  line-height:42px;
  font-size:22px;
}
.cr-meal.cr-veg .cr-choice-icon{color:#2fa43b;background:#effaf0}
.cr-meal.cr-nonveg .cr-choice-icon{color:#e84850;background:#fff0f1}

@media(max-width:767px){
  .cr-conference-logo{
    width:min(100%, 300px);
    max-height:90px;
    margin-bottom:16px;
  }
}


/* v1.1.4 - logo and heading refinement only */
.cr-form-head{
  text-align:center;
  margin-bottom:32px;
  padding-top:4px;
}
.cr-logo-wrap{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:92px;
  margin:0 auto 12px;
}
.cr-conference-logo{
  display:block;
  width:min(100%, 350px);
  max-height:92px;
  height:auto;
  object-fit:contain;
  margin:0 auto;
  filter:drop-shadow(0 5px 12px rgba(55,35,100,.07));
}
.cr-heading-rule{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:7px;
  width:150px;
  margin:0 auto 13px;
}
.cr-heading-rule span{
  display:block;
  width:42px;
  height:1px;
  background:linear-gradient(90deg,transparent,#d7d0f8);
}
.cr-heading-rule span:last-child{
  background:linear-gradient(90deg,#d7d0f8,transparent);
}
.cr-heading-rule i{
  display:block;
  width:6px;
  height:6px;
  border-radius:50%;
  background:linear-gradient(135deg,#5b35f5,#e75b91);
}
.cr-form h2{
  margin:0 0 7px;
  font-size:34px;
  line-height:1.18;
  font-weight:750;
  letter-spacing:-.45px;
  color:#171727;
}
.cr-heading-subtitle{
  margin:0 0 15px;
  color:#7b728f;
  font-size:12px;
  font-weight:700;
  letter-spacing:1.8px;
  text-transform:uppercase;
}
.cr-period{
  display:inline-flex;
  margin:0 auto;
}
@media(max-width:767px){
  .cr-form-head{margin-bottom:27px}
  .cr-logo-wrap{min-height:76px;margin-bottom:9px}
  .cr-conference-logo{width:min(100%,300px);max-height:78px}
  .cr-form h2{font-size:27px}
  .cr-heading-subtitle{font-size:10px;letter-spacing:1.4px}
  .cr-heading-rule{margin-bottom:11px}
}
@media(max-width:430px){
  .cr-logo-wrap{min-height:65px}
  .cr-conference-logo{width:min(100%,270px);max-height:68px}
  .cr-form h2{font-size:24px}
}


/* v1.3.0 payment success modal */
body.cr-modal-open{overflow:hidden}
.cr-success-modal{position:fixed;inset:0;z-index:999999;display:flex;align-items:center;justify-content:center;padding:20px}
.cr-success-modal[hidden]{display:none}
.cr-success-backdrop{position:absolute;inset:0;background:rgba(19,15,38,.58);backdrop-filter:blur(5px)}
.cr-success-dialog{position:relative;z-index:1;width:min(100%,470px);padding:34px 32px 28px;text-align:center;border:1px solid rgba(91,53,245,.12);border-radius:22px;background:#fff;box-shadow:0 28px 80px rgba(25,18,61,.28);animation:crSuccessIn .22s ease-out}
@keyframes crSuccessIn{from{opacity:0;transform:translateY(12px) scale(.97)}to{opacity:1;transform:translateY(0) scale(1)}}
.cr-success-close{position:absolute;top:12px;right:14px;width:34px;height:34px;padding:0;border:0;border-radius:50%;background:#f4f3f8;color:#6d7080;cursor:pointer;font-size:24px;line-height:30px}
.cr-success-check{width:68px;height:68px;display:flex;align-items:center;justify-content:center;margin:0 auto 13px;border-radius:50%;background:linear-gradient(135deg,#5b35f5,#d34d91);color:#fff;box-shadow:0 12px 28px rgba(91,53,245,.24)}
.cr-success-check .dashicons{width:35px;height:35px;font-size:35px;line-height:35px}
.cr-success-badge{display:inline-block;padding:6px 11px;border-radius:999px;background:#f1edff;color:#5b35f5;font-size:11px;font-weight:800;letter-spacing:.7px;text-transform:uppercase}
.cr-success-dialog h3{margin:12px 0 8px;color:#18182a;font-size:27px;line-height:1.2}
.cr-success-dialog p{margin:0 auto 12px;max-width:380px;color:#62697b;font-size:14px;line-height:1.6}
.cr-success-email{margin:12px 0;padding:11px 13px;border-radius:10px;background:#f8f7fc;color:#4e5364;font-size:13px}
.cr-success-redirect{margin:10px 0 16px;color:#777c8c;font-size:12px}
.cr-success-btn{min-width:130px;min-height:44px;padding:10px 20px;border:0;border-radius:10px;color:#fff;background:linear-gradient(100deg,#5b35f5,#d34d91,#ff9348);cursor:pointer;font:inherit;font-weight:700}
@media(max-width:480px){.cr-success-dialog{padding:30px 20px 24px}.cr-success-dialog h3{font-size:23px}}


.cr-simple-wrap{max-width:900px}
.cr-simple-form .cr-form-head{margin-bottom:32px}
.cr-simple-fields{max-width:820px;margin:0 auto}
.cr-simple-form .cr-fee-box{max-width:820px;margin-left:auto;margin-right:auto}
.cr-simple-form .cr-consent,
.cr-simple-form .cr-pay-btn,
.cr-simple-form .cr-secure,
.cr-simple-form .cr-simple-message{max-width:820px;margin-left:auto;margin-right:auto}
.cr-simple-message{margin-top:14px}
