#idg-registration{
  --green-950:#022617;
  --green-900:#04331d;
  --green:#075b35;
  --green-700:#087044;
  --gold:#b9902c;
  --gold-deep:#8f6d1d;
  --gold-light:#e7cf98;
  --ivory:#fbf8f2;
  --paper:#fff;
  --ink:#20241f;
  --muted:#8a8577;
  --line:#e9e1cf;
  --danger:#a8451f;

  direction:rtl;
  font-family:"Cairo",Arial,sans-serif;
  color:var(--ink);
  background:#fff;
  min-height:100vh;
  box-sizing:border-box;
  overflow:hidden;
}

#idg-registration *{
  box-sizing:border-box;
}

#idg-registration button,
#idg-registration input{
  font-family:inherit;
}

#idg-registration button{
  cursor:pointer;
}

/* =========================================================
   MAIN WRAPPER
========================================================= */

#idg-registration .idg-wrapper{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding:45px 25px 70px;
}

/* =========================================================
   TOP TITLE
========================================================= */

#idg-registration .idg-heading{
  text-align:center;
  margin-bottom:32px;
}

#idg-registration .idg-heading-line{
  width:55px;
  height:2px;
  background:var(--gold);
  margin:0 auto 15px;
}

#idg-registration .idg-heading h1{
  margin:0;
  color:var(--green-900);
  font-family:Georgia,serif;
  font-size:clamp(28px,4vw,43px);
  line-height:1.35;
  font-weight:700;
}

#idg-registration .idg-heading p{
  margin:10px auto 0;
  max-width:650px;
  color:var(--muted);
  font-size:13px;
  line-height:1.9;
}

/* =========================================================
   PROGRESS
========================================================= */

#idg-registration .idg-progress{
  max-width:720px;
  margin:0 auto 35px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

#idg-registration .idg-progress-step{
  display:flex;
  align-items:center;
  gap:8px;
  color:#b0aa9d;
  font-size:11px;
  font-weight:800;
  white-space:nowrap;
  transition:
    color .45s ease,
    transform .45s ease;
}

#idg-registration .idg-progress-number{
  width:31px;
  height:31px;
  border-radius:50%;
  border:1px solid var(--line);
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:11px;
  transition:
    background .45s ease,
    color .45s ease,
    border-color .45s ease,
    box-shadow .45s ease,
    transform .45s ease;
}

#idg-registration .idg-progress-step.active{
  color:var(--green-900);
  transform:translateY(-1px);
}

#idg-registration .idg-progress-step.active
.idg-progress-number{
  background:var(--green-900);
  border-color:var(--green-900);
  color:var(--gold-light);
  box-shadow:0 7px 18px rgba(4,51,29,.18);
  transform:scale(1.05);
}

#idg-registration .idg-progress-step.done{
  color:var(--green-900);
}

#idg-registration .idg-progress-step.done
.idg-progress-number{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--green-900);
}

#idg-registration .idg-progress-line{
  width:55px;
  height:1px;
  background:var(--line);
  position:relative;
  overflow:hidden;
}

#idg-registration .idg-progress-line:after{
  content:"";
  position:absolute;
  inset:0;
  background:var(--gold);
  transform:translateX(100%);
  transition:transform .5s ease;
}

#idg-registration .idg-progress-line.active:after{
  transform:translateX(0);
}

/* =========================================================
   STEPS CONTAINER
========================================================= */

#idg-registration .idg-steps-container{
  position:relative;
  width:100%;
}

/* =========================================================
   STEP
========================================================= */

#idg-registration .idg-step-screen{
  display:none;
  width:100%;
}

#idg-registration .idg-step-screen.active{
  display:block;
  animation:idgStepIn .55s cubic-bezier(.22,.61,.36,1) both;
}

#idg-registration .idg-step-screen.leaving{
  animation:idgStepOut .35s ease both;
}

@keyframes idgStepIn{
  from{
    opacity:0;
    transform:translateY(18px) scale(.99);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@keyframes idgStepOut{
  from{
    opacity:1;
    transform:translateY(0);
  }

  to{
    opacity:0;
    transform:translateY(-12px);
  }
}

/* =========================================================
   SECTION CARD
========================================================= */

#idg-registration .idg-section{
  width:100%;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:32px;
  box-shadow:
    0 15px 45px rgba(30,35,25,.045);
}

#idg-registration .idg-section-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:7px;
}

#idg-registration .idg-section-number{
  width:32px;
  height:32px;
  border-radius:50%;
  background:var(--green-900);
  color:var(--gold-light);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  font-weight:900;
  flex:0 0 32px;
}

#idg-registration .idg-section-title{
  margin:0;
  color:var(--green-900);
  font-family:Georgia,serif;
  font-size:23px;
}

#idg-registration .idg-section-sub{
  margin:0 0 25px 44px;
  color:var(--muted);
  font-size:12px;
}

/* =========================================================
   COURSES GRID
========================================================= */

#idg-registration .idg-courses{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* =========================================================
   COURSE CARD
========================================================= */

#idg-registration .idg-course{
  position:relative;
  overflow:hidden;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  cursor:pointer;

  transition:
    transform .45s cubic-bezier(.22,.61,.36,1),
    box-shadow .45s ease,
    border-color .35s ease;

  box-shadow:
    0 8px 25px rgba(25,35,25,.035);

  animation:idgCardIn .65s cubic-bezier(.22,.61,.36,1) both;
}

#idg-registration .idg-course:nth-child(1){
  animation-delay:.05s;
}

#idg-registration .idg-course:nth-child(2){
  animation-delay:.12s;
}

#idg-registration .idg-course:nth-child(3){
  animation-delay:.19s;
}

#idg-registration .idg-course:nth-child(4){
  animation-delay:.26s;
}

#idg-registration .idg-course:nth-child(5){
  animation-delay:.33s;
}

#idg-registration .idg-course:nth-child(6){
  animation-delay:.40s;
}

@keyframes idgCardIn{
  from{
    opacity:0;
    transform:translateY(22px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }
}

#idg-registration .idg-course:hover{
  transform:translateY(-7px);
  border-color:rgba(185,144,44,.7);
  box-shadow:
    0 20px 45px rgba(25,35,25,.10);
}

#idg-registration .idg-course.selected{
  border-color:var(--gold);
  box-shadow:
    0 0 0 2px rgba(185,144,44,.16),
    0 20px 45px rgba(25,35,25,.10);
  transform:translateY(-4px);
}

#idg-registration .idg-course-image{
  width:100%;
  height:205px;
  position:relative;
  overflow:hidden;
  background:#f1ede3;
}

#idg-registration .idg-course-image:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,0) 50%,
      rgba(0,0,0,.28)
    );
  pointer-events:none;
}

#idg-registration .idg-course-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;

  transition:
    transform .7s cubic-bezier(.22,.61,.36,1),
    filter .5s ease;
}

#idg-registration .idg-course:hover
.idg-course-image img{
  transform:scale(1.07);
}

#idg-registration .idg-course.selected
.idg-course-image img{
  transform:scale(1.045);
}

#idg-registration .idg-course-image.no-image{
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--gold-deep);
  font-weight:900;
  font-size:20px;
}

/* selected badge */

#idg-registration .idg-selected-badge{
  position:absolute;
  top:13px;
  right:13px;
  z-index:3;

  width:34px;
  height:34px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:#fff;
  color:var(--green-900);

  box-shadow:0 8px 20px rgba(0,0,0,.12);

  opacity:0;
  transform:scale(.7);

  transition:
    opacity .35s ease,
    transform .45s cubic-bezier(.22,.61,.36,1);
}

#idg-registration .idg-course.selected
.idg-selected-badge{
  opacity:1;
  transform:scale(1);
}

/* card body */

#idg-registration .idg-course-body{
  padding:20px;
}

#idg-registration .idg-course-name{
  color:var(--green-900);
  font-family:Georgia,serif;
  font-size:19px;
  font-weight:700;
  line-height:1.5;
  min-height:57px;
}

#idg-registration .idg-course-description{
  color:var(--muted);
  font-size:11px;
  line-height:1.8;
  margin-top:5px;
  min-height:40px;
}

#idg-registration .idg-course-price-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  padding-top:15px;
  border-top:1px solid var(--line);
}

#idg-registration .idg-course-price{
  color:var(--green-900);
  font-size:19px;
  font-weight:900;
  white-space:nowrap;
}

#idg-registration .idg-course-price small{
  display:block;
  color:var(--muted);
  font-size:9px;
  font-weight:500;
  margin-top:2px;
}

#idg-registration .idg-course-select{
  width:38px;
  height:38px;
  border-radius:50%;
  border:1px solid #ded5c3;
  display:flex;
  align-items:center;
  justify-content:center;
  color:transparent;

  transition:
    background .35s ease,
    border-color .35s ease,
    transform .4s ease;
}

#idg-registration .idg-course.selected
.idg-course-select{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--green-900);
  transform:rotate(8deg);
}

#idg-registration .idg-course-meta{
  display:flex;
  flex-wrap:wrap;
  gap:7px;
  margin-top:14px;
}

#idg-registration .idg-meta{
  background:#f7f2e7;
  color:#6e644f;
  border-radius:8px;
  padding:5px 9px;
  font-size:9.5px;
}

/* =========================================================
   LOADING
========================================================= */

#idg-registration .idg-loading{
  grid-column:1/-1;
  padding:55px 20px;
  text-align:center;
  color:var(--muted);
  font-size:12px;
}

#idg-registration .idg-spinner{
  width:32px;
  height:32px;
  border:3px solid var(--line);
  border-top-color:var(--gold);
  border-radius:50%;
  animation:idgSpin .8s linear infinite;
  margin:0 auto 12px;
}

@keyframes idgSpin{
  to{
    transform:rotate(360deg);
  }
}

/* =========================================================
   NAVIGATION
========================================================= */

#idg-registration .idg-navigation{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  margin-top:25px;
}

#idg-registration .idg-back{
  border:1px solid var(--line);
  background:#fff;
  color:var(--green-900);
  border-radius:11px;
  padding:13px 22px;
  font-size:12px;
  font-weight:800;

  transition:
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}

#idg-registration .idg-back:hover{
  border-color:var(--gold);
  background:#fdfaf3;
  transform:translateX(3px);
}

#idg-registration .idg-next{
  min-width:190px;
  border:0;
  border-radius:11px;
  padding:14px 25px;

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-deep)
    );

  color:#241c05;
  font-size:13px;
  font-weight:900;

  box-shadow:
    0 9px 22px rgba(143,109,29,.18);

  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    box-shadow .35s ease,
    opacity .3s ease;
}

#idg-registration .idg-next:hover:not(:disabled){
  transform:translateY(-2px);
  box-shadow:
    0 14px 28px rgba(143,109,29,.25);
}

#idg-registration .idg-next:disabled{
  opacity:.4;
  cursor:not-allowed;
  box-shadow:none;
}

/* =========================================================
   FORM
========================================================= */

#idg-registration .idg-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:17px;
}

#idg-registration .idg-field.full{
  grid-column:1/-1;
}

#idg-registration .idg-field label{
  display:block;
  color:var(--ink);
  font-size:12px;
  font-weight:800;
  margin-bottom:7px;
}

#idg-registration .idg-required{
  color:var(--danger);
}

#idg-registration .idg-field input{
  width:100%;
  border:1px solid var(--line);
  border-radius:11px;
  background:var(--ivory);
  padding:13px 14px;
  font-size:13px;
  outline:none;

  transition:
    border-color .3s ease,
    background .3s ease,
    box-shadow .3s ease,
    transform .3s ease;
}

#idg-registration .idg-field input:hover{
  border-color:#d9cba9;
}

#idg-registration .idg-field input:focus{
  border-color:var(--gold);
  background:#fff;
  box-shadow:
    0 0 0 4px rgba(185,144,44,.08);
  transform:translateY(-1px);
}

#idg-registration .idg-phone-wrap{
  display:flex;
  direction:ltr;
  gap:7px;
}

#idg-registration .idg-phone-code{
  width:75px;
  flex:0 0 75px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  border-radius:11px;
  background:#f0ebdf;
  color:var(--green-900);
  font-size:12px;
  font-weight:900;
}

#idg-registration .idg-phone-wrap input{
  direction:ltr;
  text-align:left;
}

#idg-registration .idg-error{
  display:none;
  margin-top:6px;
  color:var(--danger);
  font-size:10px;
}

#idg-registration .idg-error.show{
  display:block;
  animation:idgError .25s ease both;
}

@keyframes idgError{
  from{
    opacity:0;
    transform:translateY(-3px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

#idg-registration .idg-check{
  display:flex;
  align-items:flex-start;
  gap:9px;
  margin-top:20px;
  font-size:11px;
  color:var(--ink);
}

#idg-registration .idg-check input{
  width:17px;
  height:17px;
  accent-color:var(--gold);
  flex:0 0 auto;
}

#idg-registration .idg-check a{
  color:var(--gold-deep);
  text-decoration:underline;
  cursor:pointer;
}

/* =========================================================
   REVIEW
========================================================= */

#idg-registration .idg-review{
  background:
    linear-gradient(
      145deg,
      var(--green-950),
      var(--green-900)
    );

  border-radius:22px;
  padding:30px;
  color:#fff;

  box-shadow:
    0 20px 50px rgba(4,51,29,.12);
}

#idg-registration .idg-review-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:25px;
}

#idg-registration .idg-review-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  background:var(--gold);
  color:var(--green-900);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
}

#idg-registration .idg-review-header h2{
  margin:0;
  color:#fff;
  font-family:Georgia,serif;
  font-size:22px;
}

#idg-registration .idg-review-course{
  color:var(--gold-light);
  font-family:Georgia,serif;
  font-size:22px;
  font-weight:700;
  margin-bottom:7px;
}

#idg-registration .idg-review-meta{
  color:rgba(255,255,255,.58);
  font-size:11px;
  margin-bottom:20px;
}

#idg-registration .idg-review-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:13px 0;
  border-bottom:1px dashed rgba(255,255,255,.14);
  font-size:12px;
}

#idg-registration .idg-review-row span:first-child{
  color:rgba(255,255,255,.58);
}

#idg-registration .idg-review-row span:last-child{
  font-weight:800;
  color:#fff;
}

#idg-registration .idg-review-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding-top:18px;
  font-size:18px;
  font-weight:900;
}

#idg-registration .idg-review-total span:first-child{
  color:var(--gold-light);
}

#idg-registration .idg-submit{
  width:100%;
  margin-top:22px;
  padding:15px;
  border:0;
  border-radius:11px;

  background:
    linear-gradient(
      135deg,
      var(--gold),
      var(--gold-deep)
    );

  color:#241c05;
  font-size:14px;
  font-weight:900;

  transition:
    transform .35s ease,
    filter .35s ease,
    opacity .3s ease;
}

#idg-registration .idg-submit:hover:not(:disabled){
  transform:translateY(-2px);
  filter:brightness(1.06);
}

#idg-registration .idg-submit:disabled{
  opacity:.45;
  cursor:not-allowed;
}

#idg-registration .idg-status{
  display:none;
  margin-top:12px;
  padding:11px;
  border-radius:9px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:11px;
  text-align:center;
}

#idg-registration .idg-status.show{
  display:block;
}

#idg-registration .idg-status.error{
  background:#5a281d;
}

/* =========================================================
   CONFIRMATION
========================================================= */

#idg-registration .idg-confirm{
  text-align:center;
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:55px 35px;
  box-shadow:
    0 20px 50px rgba(20,30,20,.06);
}

#idg-registration .idg-success-icon{
  width:78px;
  height:78px;
  border-radius:50%;
  border:2px solid var(--gold);
  background:#fdfaf1;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
  color:var(--gold-deep);
  font-size:34px;

  animation:
    idgSuccess .65s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes idgSuccess{
  from{
    opacity:0;
    transform:scale(.65) rotate(-15deg);
  }

  to{
    opacity:1;
    transform:scale(1) rotate(0);
  }
}

#idg-registration .idg-confirm h2{
  color:var(--green-900);
  font-family:Georgia,serif;
  font-size:27px;
  margin:0 0 10px;
}

#idg-registration .idg-confirm p{
  color:var(--muted);
  font-size:13px;
  line-height:2;
}

#idg-registration .idg-confirm-box{
  max-width:600px;
  margin:25px auto 0;
  background:var(--ivory);
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
  text-align:right;
}

#idg-registration .idg-confirm-row{
  display:flex;
  justify-content:space-between;
  gap:15px;
  padding:10px 0;
  border-bottom:1px dashed var(--line);
  font-size:12px;
}

#idg-registration .idg-confirm-row:last-child{
  border-bottom:0;
}

#idg-registration .idg-confirm-row span:first-child{
  color:var(--muted);
}

#idg-registration .idg-confirm-row span:last-child{
  font-weight:800;
  color:var(--green-900);
}

#idg-registration .idg-new{
  margin-top:24px;
  padding:13px 28px;
  border:0;
  border-radius:10px;
  background:var(--green-900);
  color:#fff;
  font-weight:800;
  transition:
    transform .3s ease,
    background .3s ease;
}

#idg-registration .idg-new:hover{
  transform:translateY(-2px);
  background:var(--green);
}

/* =========================================================
   TERMS
========================================================= */

#idg-registration .idg-modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:999999;
  padding:20px;
}

#idg-registration .idg-modal.show{
  display:flex;
  animation:idgModal .3s ease both;
}

@keyframes idgModal{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}

#idg-registration .idg-modal-box{
  max-width:450px;
  width:100%;
  background:#fff;
  border-radius:16px;
  padding:28px;
  animation:idgModalBox .4s cubic-bezier(.22,.61,.36,1) both;
}

@keyframes idgModalBox{
  from{
    opacity:0;
    transform:translateY(15px) scale(.97);
  }

  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

#idg-registration .idg-modal-box h3{
  color:var(--green-900);
  font-family:Georgia,serif;
  margin:0 0 12px;
}

#idg-registration .idg-modal-box p{
  color:var(--muted);
  font-size:12px;
  line-height:2;
}

#idg-registration .idg-modal-close{
  width:100%;
  border:0;
  background:var(--green-900);
  color:#fff;
  border-radius:9px;
  padding:12px;
  margin-top:15px;
  font-weight:800;
}

/* =========================================================
   CORPORATE / GROUPS REGISTRATION
========================================================= */

#idg-registration .idg-corporate{
  margin-top:45px;
}

#idg-registration .idg-corporate-card{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  background:#eef4ea;
  border:1.5px dashed #c9dbc0;
  border-radius:16px;
  padding:22px 26px;
}

#idg-registration .idg-corporate-copy{
  flex:1 1 auto;
}

#idg-registration .idg-corporate-title{
  margin:0;
  color:var(--green-900);
  font-family:inherit;
  font-size:15px;
  font-weight:800;
}

#idg-registration .idg-corporate-text{
  margin:6px 0 0;
  color:var(--muted);
  font-size:12px;
  line-height:1.8;
}

#idg-registration .idg-corporate-btn{
  flex:0 0 auto;
  display:inline-block;
  border:1.5px solid var(--green-900);
  border-radius:10px;
  padding:13px 26px;
  background:#fff;
  color:var(--green-900);
  font-size:13px;
  font-weight:800;
  text-decoration:none;
  white-space:nowrap;

  transition:
    background .3s ease,
    color .3s ease,
    transform .3s ease;
}

#idg-registration .idg-corporate-btn:hover{
  background:var(--green-900);
  color:#fff;
  transform:translateY(-2px);
}

/* =========================================================
   FAQ
========================================================= */

#idg-registration .idg-faq{
  max-width:820px;
  margin:35px auto 0;
}

#idg-registration .idg-faq-title{
  text-align:center;
  margin:0 0 18px;
  color:var(--green-900);
  font-family:Georgia,serif;
  font-size:21px;
}

#idg-registration .idg-faq-item{
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  margin-bottom:12px;
  overflow:hidden;
  transition:border-color .3s ease;
}

#idg-registration .idg-faq-item.open{
  border-color:rgba(185,144,44,.55);
}

#idg-registration .idg-faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  border:0;
  background:transparent;
  padding:18px 22px;
  text-align:right;
  color:var(--ink);
  font-size:13px;
  font-weight:800;
}

#idg-registration .idg-faq-icon{
  flex:0 0 auto;
  color:var(--green-900);
  font-size:19px;
  font-weight:700;
  line-height:1;
  transition:
    transform .35s cubic-bezier(.22,.61,.36,1),
    color .3s ease;
}

#idg-registration .idg-faq-item.open .idg-faq-icon{
  transform:rotate(45deg);
  color:var(--gold-deep);
}

#idg-registration .idg-faq-answer{
  max-height:0;
  overflow:hidden;
  padding:0 22px;
  transition:
    max-height .4s ease,
    padding .3s ease;
}

#idg-registration .idg-faq-item.open .idg-faq-answer{
  max-height:240px;
  padding:0 22px 20px;
}

#idg-registration .idg-faq-answer p{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.9;
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:900px){

  #idg-registration .idg-courses{
    grid-template-columns:repeat(2,1fr);
  }

}

@media(max-width:700px){

  #idg-registration .idg-wrapper{
    padding:30px 15px 45px;
  }

  #idg-registration .idg-heading{
    margin-bottom:25px;
  }

  #idg-registration .idg-heading h1{
    font-size:28px;
  }

  #idg-registration .idg-heading p{
    font-size:11px;
  }

  #idg-registration .idg-progress{
    gap:5px;
    margin-bottom:25px;
  }

  #idg-registration .idg-progress-step{
    font-size:8px;
    gap:4px;
  }

  #idg-registration .idg-progress-number{
    width:27px;
    height:27px;
  }

  #idg-registration .idg-progress-line{
    width:22px;
  }

  #idg-registration .idg-section{
    padding:20px 15px;
    border-radius:18px;
  }

  #idg-registration .idg-section-title{
    font-size:19px;
  }

  #idg-registration .idg-section-sub{
    margin-right:42px;
    margin-left:0;
    font-size:10px;
  }

  #idg-registration .idg-courses{
    grid-template-columns:1fr;
    gap:15px;
  }

  #idg-registration .idg-course-image{
    height:185px;
  }

  #idg-registration .idg-course-body{
    padding:16px;
  }

  #idg-registration .idg-course-name{
    font-size:17px;
  }

  #idg-registration .idg-form-grid{
    grid-template-columns:1fr;
  }

  #idg-registration .idg-field.full{
    grid-column:auto;
  }

  #idg-registration .idg-navigation{
    flex-direction:column-reverse;
  }

  #idg-registration .idg-next,
  #idg-registration .idg-back{
    width:100%;
  }

  #idg-registration .idg-review{
    padding:22px 17px;
  }

  #idg-registration .idg-review-course{
    font-size:18px;
  }

  #idg-registration .idg-confirm{
    padding:40px 20px;
  }

  #idg-registration .idg-corporate-card{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
    padding:20px 16px;
    border-radius:14px;
  }

  #idg-registration .idg-corporate-btn{
    text-align:center;
  }

  #idg-registration .idg-faq-question{
    padding:15px 16px;
    font-size:12px;
  }

}

.idg-wp-error{padding:20px;border:1px solid #e9e1cf;border-radius:12px;color:#a8451f;background:#fbf8f2;font-family:Cairo,Arial,sans-serif;text-align:center}
