/* * {
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
} */

/* body {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.profile-wrapper {
  width: 100%;
  max-width: 500px;
  padding: 20px;
}

.profile-card {
  background: #111;
  color: #fff;
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 45px rgba(0,0,0,.6);
}

/* Progress bar */
.progress-bar {
  width: 100%;
  height: 6px;
  background: #222;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  transition: width 0.4s ease;
}

h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

p {
  font-size: 14px;
  color: #aaa;
}

label {
  display: block;
  background: #1e1e1e;
  padding: 14px;
  margin: 12px 0;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid #2b2b2b;
}

input[type="radio"],
input[type="checkbox"] {
  display: none;
}

label:hover {
  background: #2a2a2a;
}

input:checked + span {
  color: #00e0ff;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}

button {
  padding: 12px 26px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  cursor: pointer;
}

#prevBtn {
  background: #333;
  color: #aaa;
}

#nextBtn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
  color: #fff;
}

#emailInput {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  margin-top: 15px;
  font-size: 15px;
}

.hidden {
  display: none;
}
