.register-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 40px 20px;
  background: linear-gradient(135deg, #0b1224 0%, #1a1f3f 100%);
}

.register-card {
  background: #111c3f;
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6);
  color: #fff;
  text-align: center;
  position: relative;
}

.register-card h1 {
  margin-bottom: 15px;
  font-size: 28px;
  color: #f3c86a;
}

.register-card p {
  margin-bottom: 25px;
  font-size: 15px;
  opacity: 0.85;
  text-align: center;
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #0b1224;
  color: #fff;
}

.form-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 4px;
}

.legal-box {
  font-size: 12px;
  opacity: 0.8;
  margin-bottom: 20px;
  text-align: left;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: none;
  background: #f3c86a;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #e5c845;
}

/* Password toggle & strength */
.password-wrapper { position: relative; }
.toggle-password {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}
.password-strength {
  height: 5px;
  width: 100%;
  background: #333;
  border-radius: 4px;
  margin-top: 5px;
}
.strength-bar {
  height: 100%;
  width: 0%;
  background: #0f0;
  border-radius: 4px;
  transition: width 0.3s;
}

/* Success Message */
.success-msg {
  display: none;
  margin-top: 20px;
  font-weight: 600;
  color: #0f0;
  text-align: center;
}