body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: #f5f7fa;
}

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

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

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

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

/* FORM CONTAINER */
.page-container {
  width: 640px;
  margin: 60px auto;
  background: #ffffff;
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
}


/* PAGES */
.page {
  display: none;
}

.page.active {
  display: block;
}

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

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

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

input,
textarea {
  width: 100%;
  padding: 12px 14px;
  margin-top: 8px;
  background: #f1f3f5;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
}


textarea {
  height: 90px;
}

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

.checkboxes label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 13px;
}

.checkboxes input {
  width: 15px;
  height: 15px;
  accent-color: #1e293b;
}


/* BUTTONS */


.btn-right {
  margin-top: 35px;
  text-align: right;
}

.btn-right button {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}


.submit-btn {
  margin-top: 30px;
  background: #f87171;
  border-radius: 12px;
  font-weight: 600;
  padding: 14px;
  width: 100%;
  border: none;
  color: white;
  cursor: pointer;
  transition: 0.2s ease;
}

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


/* FOOTER */
/* ===== UNIVERSITY FOOTER ===== */

.univ-footer {
  background: #1e293b;
  padding: 16px 0;
  width: 100%;
}

/* Inner container */
.footer-inner {
  width: 92%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #cbd5e1;
  font-size: 13px;
}

/* Middle section (icons + language) */
.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Social icons */
.footer-links img {
  height: 16px;
  opacity: 0.85;
  cursor: pointer;
  transition: 0.2s ease;
}

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

/* Terms link */
.univ-footer a {
  color: #cbd5e1;
  text-decoration: none;
}

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


/* SUCCESS PAGE */

.success-page {
  padding: 80px 0;
}

.success-content {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  padding: 60px;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  text-align: left;
}

/* Success Icon */

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

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

@keyframes pop {
  0% { transform: scale(0.6); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}



.upload-box {
  border: 1px dashed #cbd5e1;
  border-radius: 12px;
  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-wrapper {
  margin-top: 8px;
}

.file-info {
  margin-top: 8px;
  background: #f1f3f5;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.file-info button {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 14px;
  cursor: pointer;
}

.others-input {
  display: none;
  margin-top: 8px;
  background: #f1f3f5;
  border-radius: 8px;
  padding: 12px;
  border: none;
}

/* Remove container styling when page3 is active */
#page3.active {
  background: transparent;
}

#page3.active ~ .univ-footer {
  margin-top: 40px;
}
