/* Step-by-Step Registration Styles */

.main-content {
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem 0;
}

.form-panel {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.right-column-container {
    padding: 2rem;
}

.form-content {
    width: 100%;
}

/* Progress Header */
.progress-header {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef;
}

.progress-bar-container {
    width: 100%;
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #28a745);
    transition: width 0.3s ease;
}

.progress-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    text-align: center;
}

/* Form Sections */
.form-section {
    width: 100%;
    padding: 1rem 0;
}

.section-container {
    max-width: 100%;
    margin: 0 auto;
}

/* Form Groups */
.glam-form-group {
    margin-bottom: 1.5rem;
}

.glam-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #495057;
    font-size: 0.95rem;
}

.glam-form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

.glam-form-control:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

/* Account Type Selection */
.account-type-radio {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.radio-option {
    flex: 1;
    position: relative;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-option label {
    display: block;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.radio-option input[type="radio"]:checked+label {
    border-color: #007bff;
    background: #f8f9ff;
    color: #007bff;
    font-weight: 600;
}

/* Account Type Fields */
.account-type-fields {
    margin-top: 1rem;
}

/* Navigation */
.form-navigation {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e9ecef;
}

.nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-button {
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-button.prev {
    background: #f8f9fa;
    color: #6c757d;
    border: 2px solid #e9ecef;
}

.nav-button.prev:hover {
    background: #e9ecef;
    color: #495057;
}

.nav-button.next {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    border: none;
}

.nav-button.next:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

/* Verification Section */
.verification-section {
    margin-bottom: 2rem;
}

.verification-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 1.5rem;
}

.verification-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #f8f9fa;
}

.verification-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #495057;
    min-width: 200px;
}

.verification-content {
    flex: 1;
}

.verification-description {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.status-pending {
    background: #ffc107;
    color: #856404;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Document Upload */
.document-section {
    margin-top: 2rem;
}

.document-section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.document-section-description {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.upload-area {
    border: 2px dashed #dee2e6;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.upload-area:hover {
    border-color: #007bff;
    background: #f8f9ff;
}

.upload-content {
    text-align: center;
    color: #6c757d;
}

.upload-status {
    font-size: 0.9rem;
}

/* Business Plan Cards */
.business-plan-card {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    margin-bottom: 1rem;
}

.business-plan-card:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
}

.business-plan-card.active {
    border-color: #007bff;
    background: #f8f9ff;
}

.business-plan-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
    margin-bottom: 0.5rem;
}

.business-plan-description {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.business-plan-icon {
    color: #007bff;
    font-size: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        padding: 1rem 0;
    }

    .right-column-container {
        padding: 1rem;
    }

    .account-type-radio {
        flex-direction: column;
    }

    .nav-buttons {
        flex-direction: column;
    }

    .nav-button {
        width: 100%;
        justify-content: center;
    }

    .verification-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .verification-label {
        min-width: auto;
        margin-bottom: 0.5rem;
    }
}