
/* Registration Page Specific Styles */
:root {
  --health-primary: #007C36;
  --health-secondary: #EDFF8B;
  --health-accent: #E6F4EA;
  --health-text: #1A1A1A;
  --health-muted: #666666;
  --health-bg: #FFFFFF;
  --health-input-bg: #F5F7FA;
}

body main.login-section {
  display: flex !important;
  min-height: 85vh !important;
  padding-top: 100px !important; /* Space for sticky header */
  margin-top: 0 !important;
  background-color: var(--health-bg) !important;
}

body .form-side {
  width: 50% !important;
  padding: 60px 80px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

body .form-side::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Brave */
}

body .visual-side {
  width: 50% !important;
  background: #f0f0f0 !important;
  position: relative !important;
  overflow: hidden !important;
}

.brand-logo {
  height: 40px; /* Slightly smaller logo */
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--health-text);
  margin-bottom: 12px;
}

.form-header p {
  color: var(--health-muted);
  margin-bottom: 30px;
}

/* Multi-step progress */
.step-progress {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  margin-bottom: 40px !important;
  position: relative !important;
  padding: 0 !important;
}

.step-item {
  flex: 1 !important;
  text-align: center !important;
  position: relative !important;
  cursor: pointer !important;
  padding-bottom: 12px !important;
  border-bottom: 3px solid #E2E8F0 !important;
  transition: all 0.3s ease !important;
  text-decoration: none !important;
}

.step-item .step-label {
  display: block !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--health-muted) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  transition: color 0.3s ease !important;
}

.step-item.active {
  border-bottom-color: var(--health-primary) !important;
}

.step-item.active .step-label {
  color: var(--health-primary) !important;
}

.step-item.completed {
  border-bottom-color: var(--health-primary) !important;
}

.step-item:hover .step-label {
  color: var(--health-text) !important;
}

.form-step {
  display: none !important;
}

.form-step.active {
  display: block !important;
}

/* Custom Inputs */
.form-group {
  margin-bottom: 24px;
}

.form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--health-text);
  margin-bottom: 8px;
  display: block;
}

.input-wrapper {
  position: relative;
}

.form-control {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  background-color: var(--health-input-bg);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.2s ease;
  color: var(--health-text);
}

.form-control:focus {
  background-color: #fff;
  border-color: var(--health-primary);
  box-shadow: 0 0 0 4px rgba(0, 124, 54, 0.1);
  outline: none;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 18px;
}

/* Buttons */
.btn-next, .btn-register {
  background-color: var(--health-primary);
  color: white;
  border: none;
  border-radius: 12px;
  height: 56px;
  font-size: 16px;
  font-weight: 700;
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-next:hover, .btn-register:hover {
  background-color: #00662d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 124, 54, 0.2);
}

.btn-back {
  background: none;
  border: none;
  color: var(--health-muted);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  transition: color 0.2s ease;
}

.btn-back:hover {
  color: var(--health-text);
}

/* Visual Side Carousel */
.visual-side .carousel, 
.visual-side .carousel-inner, 
.visual-side .carousel-item {
  height: 100% !important;
}

.visual-side img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 60px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: white;
}

.carousel-overlay h3 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.carousel-overlay p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 500px;
}

@media (max-width: 1200px) {
  .form-side { padding: 60px; }
}

@media (max-width: 992px) {
  .visual-side { display: none; }
  .form-side { width: 100%; padding: 40px 20px; }
}
