/* Nashmia css */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f5f7fa;

  display: flex;
  flex-direction: column;
  min-height: 100vh;
}




/* HEADER */
.header {
 background: #1b2a41;
  height: 52px;
  display: flex;
  align-items: center;
}

.header-inner {
  width: 92%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: white;
  font-size: 14px;
  font-weight: 600;
}

.header nav a {
  color: #d6dde6;
  margin-left: 18px;
  font-size: 12.5px;
  text-decoration: none;
}

/* FORM */
.page-container {
  width: 620px;
  margin: 40px auto;
  background: white;
  padding: 40px;
  border-radius: 6px;
  min-height: auto;

  flex: 1;
}



.page {
  display: none;
}

.page.active {
  display: block;
}

h1 {
  font-size: 22px;
  margin-bottom: 10px;
}

.subtext {
  font-size: 14px;
  font-weight: 600;
}

.desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 25px;
}

label {
  font-size: 13px;
  display: block;
  margin-top: 15px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  background: #f7f7f7;
  border: none;
  border-radius: 6px;
}

textarea {
  height: 90px;
}

.checkboxes label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
}
.btn-right {
  margin-top: 30px;
  text-align: right;
}


.next-link {
  cursor: pointer;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.submit-btn {
  background: #ff6b6b;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  width: 100%;
  margin-top: 25px;
}
.btn-right button {
  background: none;
  border: none;
  padding: 0;
  color: #000000;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
}


/* FOOTER */
/* MINI FOOTER (GIP Pages Only) */

.gip-footer {
  background: #1e293b; /* closer to your screenshot */
  padding: 16px 0;
  width: 100%;
}

.gip-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5e1;
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-links img {
  height: 16px;
  opacity: 0.85;
  cursor: pointer;
}

.footer-links img:hover {
  opacity: 1;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}


#page2 {
  padding-bottom: 40px;
}

#page2 h1 {
  font-size: 22px;
  margin-bottom: 20px;
}


.review-section {
  flex: 1;
  margin-top: -10px; /* brings it slightly up */
  font-size: 13px;
  color: #333;
}

.radio-group {
  margin-top: 10px;
  margin-bottom: 20px;
}

.radio-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
}

.radio-group input {
  margin-right: 8px;
}

#page2 input,
#page2 textarea {
  background: #f1f3f5;
  border-radius: 8px;
  border: none;
  padding: 12px;
  font-family: 'Montserrat', sans-serif;
}

.upload-box {
  border: 1px dashed #cbd5e1;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin-top: 8px;
  background: #f8fafc;
}

.upload-btn {
  background: #1e293b;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  margin-right: 8px;
  cursor: pointer;
}

.upload-box span {
  font-size: 12px;
  color: #555;
}

.submit-btn {
  background: #f87171;
  border-radius: 10px;
  font-weight: 600;
  padding: 12px;
  margin-top: 30px;
  transition: 0.2s ease;
}

.submit-btn:hover {
  background: #ef4444;
}

.checkbox-group {
  margin-top: 10px;
  margin-bottom: 20px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 10px;
  cursor: pointer;
}

/* Better checkbox alignment */
.checkbox-item input {
  width: 16px;
  height: 16px;
  accent-color: #1e293b;
  margin: 0;
}

/* Hidden Others field */
.others-input {
  display: none;
  margin-top: 8px;
  background: #f1f3f5;
  border-radius: 8px;
  padding: 12px;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

/* ===== SUCCESS PAGE ===== */
.success-page {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}


.success-card {
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  max-width: 620px;
  text-align: left;
  margin:auto;
}

.success-card h1 {
  font-size: 26px;
  margin-bottom: 10px;
  color: #0f172a;
}

.success-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1e293b;
}

.success-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}
/* SUCCESS ICON */

.success-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 25px;
}

.success-icon svg {
  width: 70px;
  height: 70px;
  animation: pop 0.4s ease;
}

@keyframes pop {
  0% { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
/* FORCE page visibility control */

.page {
  display: none !important;
}

.page.active {
  display: block !important;
}
