:root{
  --vv-primary:#0f763e;      /* HOA Green */
  --vv-primary-2:#158a4b;
  --vv-accent:#e58e26;       /* HOA Gold */
  --vv-bg:#f7f9f6;
}
body{
  background: var(--vv-bg);
  font-family: system-ui, -apple-system, sans-serif;
  color: #203328;
}
.reg-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}
.brand-logo {
  width: 72px;
  height: 72px;
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  overflow: hidden;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reg-card {
  width: 100%;
  max-width: 820px;
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.03);
  padding: 2.5rem;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #4b5b53;
}
.form-control, .form-select {
  padding: 0.6rem 0.85rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 0.6rem;
  font-size: 0.9rem;
  color: #2d3748;
}
.form-control:focus, .form-select:focus {
  border-color: var(--vv-primary-2);
  box-shadow: 0 0 0 3px rgba(31,95,63,0.12);
}
.upload-box {
  border: 1.5px dashed #cbd5e1;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  background: #f8fafc;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upload-box:hover {
  border-color: var(--vv-primary);
  background: #f1f5f9;
}
.upload-box i {
  font-size: 1.3rem;
  color: var(--vv-primary);
  margin-bottom: 0.35rem;
  display: block;
}
.upload-box span {
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}
.upload-box p {
  font-size: 0.68rem;
  color: #94a3b8;
  margin: 0.15rem 0 0;
}
.upload-box input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.btn-vv {
  background: var(--vv-primary);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.btn-vv:hover {
  background: var(--vv-primary-2);
  color: #fff;
}
.btn-outline-vv {
  background: transparent;
  color: #4b5b53;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  padding: 0.65rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s;
}
.btn-outline-vv:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

/* Stepper Component */
.stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
  position: relative;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.stepper-line {
  position: absolute;
  top: 18px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}
.stepper-line-progress {
  position: absolute;
  top: 18px;
  left: 8%;
  height: 2px;
  background: var(--vv-primary);
  z-index: 2;
  transition: width 0.3s ease;
  width: 0%;
}
.step-item {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.step-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #cbd5e1;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px #fff;
}
.step-item.active .step-circle {
  border-color: var(--vv-primary);
  background: var(--vv-primary);
  color: #fff;
}
.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  margin-top: 0.5rem;
  color: #64748b;
  text-align: center;
  white-space: nowrap;
}
.step-item.active .step-label {
  color: var(--vv-primary);
}

