body {
    font-family: 'Poppins', sans-serif;
}

.registration-section {
    background: #f4f5ff;
    padding: 50px 0 80px;
}

.registration-card {
    background: #fff;
    border-radius: 24px;
    padding: 45px 40px;
    box-shadow: 0 15px 40px rgba(122, 106, 216, 0.15);
}

.registration-card .section-heading h2 {
    font-weight: 700;
    margin-bottom: 15px;
}

.registration-card fieldset {
    margin-bottom: 20px;
}

.registration-card label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
    color: #333;
}

.registration-card input,
.registration-card select,
.registration-card textarea {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #e0e0f5;
    padding: 0 15px;
    font-size: 14px;
    transition: 0.3s;
}

.registration-card textarea {
    height: auto;
    padding: 12px 15px;
}

.registration-card input:focus,
.registration-card select:focus,
.registration-card textarea:focus {
    border-color: #7a6ad8;
    box-shadow: 0 0 0 3px rgba(122, 106, 216, 0.15);
    outline: none;
}

.scholar-btn {
    background: #6ad879;
    color: #fff;
    border-radius: 30px;
    padding: 14px 34px;
    font-weight: 600;
    border: none;
    width: 100%;
    transition: 0.3s;
}

.scholar-btn:hover {
    background: #5f4bd8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(122, 106, 216, 0.3);
}

.alert-message {
    border-radius: 12px;
    padding: 15px 20px;
    margin-bottom: 20px;
    font-weight: 500;
}

footer {
    background: #6ad879;
    padding: 20px 0;
    text-align: center;
    color: #fff;
}

@media (max-width: 767px) {
    .registration-card {
        padding: 35px 25px;
    }
}

/* CTA Register Styles */
.cta-register {
  padding: 28px 0 40px;
}
.cta-register .cta-left { color: #fff; }
.cta-register .cta-badge {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.08);
  width:52px;
  height:52px;
  border-radius:12px;
  color:#fff;
  font-size:20px;
  margin-bottom:14px;
}
.cta-register .cta-title {
  color: #ffffff;
  font-size: 36px;
  line-height: 1.05;
  margin:0 0 8px 0;
  font-weight:800;
}
.cta-register .cta-sub {
  color: rgba(255,255,255,0.9);
  font-size:16px;
  margin-bottom:18px;
}
.cta-register .cta-actions { display:flex; gap:12px; align-items:center; }
.btn-cta { border-radius: 999px; padding: 12px 26px; font-weight:700; }
.btn-cta-primary {
  background: #ffd24a; /* yellow */
  color:#1b1b1b;
  border: none;
  box-shadow: 0 12px 30px rgba(255,210,74,0.18);
}
.btn-cta-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(255,210,74,0.22); }
.btn-cta-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.18);
  color: #fff;
}
.cta-register .cta-right {
  height:180px;
  background-size: cover;
  background-position: center right;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(3,19,46,0.3);
}
/* dark blue background for whole CTA */
.cta-register .container { background: linear-gradient(90deg,#113256 0%,#123a58 100%); padding:18px; border-radius:14px; }

@media (min-width: 992px) {
  .cta-register .cta-title { font-size:44px; }
  .cta-register .cta-right { height:220px; }
}

@media (max-width: 991px) {
  .cta-register .container { background: linear-gradient(180deg,#113256 0%,#123a58 100%); }
  .cta-register .row { display:flex; flex-direction:column-reverse; }
  .cta-register .cta-right { width:100%; height:220px; margin-bottom:16px; }
  .cta-register .cta-title { text-align:center; font-size:28px; }
  .cta-register .cta-sub { text-align:center; }
  .cta-register .cta-actions { justify-content:center; }
}

/* helper if image missing */
.cta-register .cta-right { background-image: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)); }

/* small decorative diamond on image */
.cta-register .cta-right::after {
  content: '';
  position: absolute;
  right: 26px;
  bottom: 18px;
  width: 18px;
  height: 18px;
  transform: rotate(45deg);
  background: rgba(255,255,255,0.18);
  border-radius: 3px;
}

