/* ========================================
   BUSINESS REGISTRATION FORM
   FINAL PRODUCTION VERSION
   ======================================== */

   .bizreg-wrapper * {
    box-sizing: border-box;
}

/* Wrapper */
.bizreg-wrapper {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
}

/* Card */
.bizreg-card {
    width: 100%;
    max-width: 1000px;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px 60px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.15);
}

/* Title */
.bizreg-title {
    text-align: center;
    margin-bottom: 45px;
    font-size: 36px;
    font-weight: 800;
    color: #333;
}

/* Stepper */
.bizreg-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.bizreg-step {
    flex: 1;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    border-bottom: 3px solid #ddd;
    font-size: 14px;
}

.bizreg-step.active {
    border-color: #667eea;
    color: #667eea;
}

.bizreg-step.completed {
    border-color: #10b981;
    color: #10b981;
}

/* Step Content */
.bizreg-step-content {
    display: none;
}

.bizreg-step-content.active {
    display: block;
}

/* Grid */
.bizreg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 30px;
}

.bizreg-grid label {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.bizreg-grid input,
.bizreg-grid select {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    font-size: 14px;
    transition: 0.3s;
}

.bizreg-grid input:focus,
.bizreg-grid select:focus {
    border-color: #667eea;
    background: #fff;
    outline: none;
}

/* Error & Valid */
.bizreg-grid input.error,
.bizreg-grid select.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.bizreg-grid input.valid,
.bizreg-grid select.valid {
    border-color: #10b981;
    background: #f0fdf4;
}

.bizreg-error {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    min-height: 16px;
}

/* File Preview */
.file-preview {
    margin-top: 8px;
    font-size: 12px;
}

/* Password Strength */
.strength-bar {
    height: 6px;
    margin-top: 8px;
    background: #e5e7eb;
    border-radius: 6px;
}

/* Declaration */
.bizreg-declaration {
    margin-top: 25px;
    display: flex;
    gap: 12px;
    font-size: 13px;
    align-items: flex-start;
}

.bizreg-declaration input {
    margin-top: 3px;
}

/* Navigation */
.bizreg-nav {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
}

.bizreg-nav button {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    border: none;
    cursor: pointer;
}

.next-btn,
.submit-btn {
    background: #667eea;
    color: #fff;
}

.prev-btn {
    background: #e5e7eb;
}

/* Responsive */
@media(max-width:768px){
    .bizreg-grid{
        grid-template-columns: 1fr;
    }
    .bizreg-card{
        padding: 30px 20px;
    }
}


.bizreg-helper {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #6b7280;
}