/* Register Module Styles */

.reg-wrap {
  background: #000;
  color: #fff;
  padding: 50px;
  margin-top: 40px;
  text-align: center; /* centres heading text */
}

.reg-title {
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

.reg-form {
  margin: 0 auto;       /* centre the form block */
  max-width: 400px;     /* same width as heading */
  width: 100%;
  text-align: left;     /* keep labels/inputs left-aligned inside the centred block */
}

.reg-field {
  margin-bottom: 15px;
}

.reg-field label {
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
  color: #fff;
}

.reg-field input {
  width: 100%;
  max-width: 300px;
  padding: 6px 10px;
  font-size: 14px;
  background: #000 !important;
  color: #fff !important;
  border: 1px solid #666;
  border-radius: 3px;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.reg-field input:focus {
  border: 1px solid #fb0208 !important;
  background: #000 !important;
  color: #fff !important;
  outline: none;
}

/* Invalid field state */
.reg-field input.error {
  border: 2px solid #fb0208 !important;
  background: #330000 !important;
  color: #fff !important;
}

/* Inline error messages */
.reg-field .error-message {
  color: #fb0208;
  font-size: 12px;
  margin-top: 4px;
}

/* Checkbox */
.checkbox-field {
  margin-bottom: 20px;
}

.checkbox-field label {
  font-size: 14px;
  color: #fff;
}

.checkbox-field input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
  accent-color: #fb0208;
  appearance: auto;
}

/* Submit button */
.innovan-register {
  background: red !important;
  color: #fff !important;
  border: 2px solid red !important;
  padding: 12px 18px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
}

.innovan-register.active-red {
  background: #fb0208 !important;
  border-color: #fb0208 !important;
  color: #fff !important;
}

.innovan-register:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Feedback summary */
.reg-feedback {
  margin-top: 15px;
  font-size: 14px;
  color: #fb0208;
  font-weight: bold;
  text-align: left;
}

/* Bullet list spacing */
.reg-feedback ul {
  margin: 6px 0 0 16px;
}

.reg-feedback li {
  margin-bottom: 4px;
}