.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    line-height: 0;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem;
} 
        .register-section {
            min-height: 100vh;
            background: #fff;
            padding: 2rem 0;
        }
        
        .register-container {
            display: flex;
            align-items: center;
            min-height: 100vh;
        }
        
        .register-info {
            padding: 2rem;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
            border-radius: 12px 0 0 12px;
            color: #fff;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .register-info h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .register-info p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            line-height: 1.6;
        }
        
        .register-features {
            margin-top: 2rem;
        }
        
        .register-feature {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .register-feature i {
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        .register-card {
            background: #fff;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            padding: 2.5rem;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .register-card h2 {
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .form-control {
            width: 100%;
        }
        
        .form-check {
            margin-bottom: 1.5rem;
        }
        
        .btn-register {
            width: 100%;
            margin-bottom: 1rem;
        }
        
        .register-footer {
            text-align: center;
            margin-top: 1.5rem;
        }
        
        .register-footer a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .register-footer a:hover {
            text-decoration: underline;
        }
        
        @media (max-width: 768px) {
            .register-container {
                flex-direction: column;
            }
            
            .register-info {
                border-radius: 12px 12px 0 0;
                margin-bottom: 1px;
            }
            
            .register-card {
                border-radius: 0 0 12px 12px;
            }
        }