/* Namespace: Registration Page */
#registerPage {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

#registerPage h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #002855;
}

/* Progress bar */
#registerPage .progress-container {
  width: 100%;
  background: #e6e6e6;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
#registerPage .progress-bar {
  width: 0%;
  height: 100%;
  background: #002855;
  transition: width 0.3s ease;
}

/* Form fields */
#registerPage form {
  display: flex;
  flex-direction: column;
}

#registerPage label {
  font-weight: bold;
  margin: 10px 0 5px;
}

#registerPage input,
#registerPage select,
#registerPage textarea {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  box-sizing: border-box;
}

#registerPage textarea {
  resize: vertical;
}

/* Buttons */
#registerPage .btns {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}
#registerPage button {
  padding: 10px 20px;
  background: #002855;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#registerPage button:hover {
  background: #004080;
}

/* Steps */
#registerPage .form-step {
  display: none;
}
#registerPage .form-step.active {
  display: block;
}
