

        
        .page {
            display: none;
        }
        
        .page.active {
            display: block;
        }
        
        .progress-bar-cb {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            padding: 20px 0;
            border-bottom: 2px solid #1e3a5f;
        }

        .progress-step {
            flex: 1;
            text-align: center;
            color: #5a7a99;
            cursor:pointer;
        }

        .progress-step:hover {
            background-color: #3a7bc8;
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(74, 144, 226, 0.3);
            cursor:pointer;
            border-radius: 8px;
            color:white;
        }


        .progress-step.active {
            color: #fff;
            font-weight: bold;
        }

        .progress-step.completed {
            color: #4CAF50;
        }

        .progress-step.disabled {
            opacity: 0.5;
            cursor: not-allowed;
            pointer-events: none;
        }

        
        h1 {
            margin-bottom: 30px;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        input[type="text"],
        input[type="email"],
        input[type="file"],
        textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        textarea {
            min-height: 100px;
        }
        
        .button-group {
            margin-top: 30px;
            display: flex;
            justify-content: space-between;
        }
        
        button {
            padding: 5px 10px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 16px;
        }
        
        .btn-primary-cb {
            background-color: #007bff;
            color: white;
        }
        
        .btn-secondary-cb {
            background-color: #6c757d;
            color: white;
        }
        
        .btn-primary:hover {
            background-color: #0056b3;
        }
        
        .btn-secondary:hover {
            background-color: #545b62;
        }
        
        .person-entry {
            border: 1px solid #ddd;
            padding: 15px;
            margin-bottom: 15px;
            border-radius: 4px;
        }
        
        .file-list {
            list-style: none;
            padding: 0;
        }
        
        .file-list li {
            padding: 10px;
            border: 1px solid #ddd;
            margin-bottom: 5px;
            border-radius: 4px;
        }
        
        .summary-section {
            background-color: #f8f9fa;
            padding: 15px;
            margin-bottom: 20px;
            border-radius: 4px;
        }

        .top_left {

            display:none;
            margin-bottom: 10px;
        }

        .top_right {

            display:block;
        }



        .section-label {
            font-size: 1rem;
            color: #5a7a99;
            font-weight: 500;
            margin-bottom: 4px;
        }


        .property-address {
            font-size: 24px;
            font-weight: 500;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .property-location {
            font-size: 20px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 10px;
        }



        .auth-details {
            font-size: 18px;
            font-weight: 300;
            color: rgba(255, 255, 255, 0.9);
        }



        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        @media (max-width: 1024px) {

            .top_left {

                display:block;
            }

            .top_right {

                display:none;
            }


        }


        @media (max-width: 768px) {


        }


