/* Modern Registration Wizard - Matching Homepage Design */

.registration-wizard-container {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--warm-cream) 0%, #fff 100%);
    padding: 2rem 1rem;
    font-family: 'Poppins', sans-serif;
}

.wizard-card {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Sidebar - Green Gradient */
.wizard-sidebar {
    background: linear-gradient(135deg, var(--sage-green), var(--mint-green));
    color: white;
    padding: 3rem 2rem;
    min-height: 100%;
}

.wizard-sidebar h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.wizard-benefits {
    margin-bottom: 2rem;
}

.wizard-benefit {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.wizard-benefit-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.wizard-benefit-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.wizard-benefit-content p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.wizard-stats {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.wizard-stat {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.wizard-stat-label {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Main Form Area */
.wizard-main {
    padding: 3rem 2rem;
}

.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.wizard-progress-line {
    position: absolute;
    top: 20px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--sage-green), var(--mint-green));
    transition: width 0.3s ease;
    z-index: 0;
}

.wizard-step {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
}

.wizard-step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wizard-step.active .wizard-step-circle,
.wizard-step.completed .wizard-step-circle {
    background: linear-gradient(135deg, var(--sage-green), var(--mint-green));
    color: white;
}

.wizard-step-label {
    font-size: 0.875rem;
    color: #6b7280;
    font-weight: 500;
}

.wizard-step.active .wizard-step-label {
    color: var(--text-dark);
    font-weight: 600;
}

/* Form Styles */
.wizard-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.form-group-wizard {
    margin-bottom: 1.5rem;
}

.form-group-wizard label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group-wizard .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.form-group-wizard .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(125, 166, 135, 0.1);
}

.form-feedback {
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.form-feedback.info {
    color: var(--text-muted);
}

.wizard-navigation {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-wizard {
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-wizard-primary {
    background: linear-gradient(135deg, var(--sage-green), var(--mint-green));
    color: white;
    flex: 1;
}

.btn-wizard-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(125, 166, 135, 0.3);
}

.btn-wizard-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid #e5e7eb;
}

.btn-wizard-secondary:hover {
    background: #f9fafb;
}

.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .wizard-sidebar {
        padding: 2rem 1.5rem;
    }
    
    .wizard-main {
        padding: 2rem 1.5rem;
    }
}
