.animate_lines {
            position: fixed;
            margin: auto;
            top: 0;
            left: 0;
            right: 0;
            height: 100vh;
            width: 90vw;
            z-index: 0; /* Ensure this is lower than the form's z-index */
            pointer-events: none;
        }
        
        .animate_lines .line {
            position: absolute;
            overflow: hidden;
            width: 1px;
            height: 100%;
            top: 0;
            left: 0;
            background: rgba(52, 58, 64, 0.03);
        }
        
        .animate_lines .line:after {
            content: "";
            display: block;
            position: absolute;
            height: 15vh;
            width: 100%;
            top: -50%;
            left: 0;
            background: linear-gradient(to bottom, rgba(52, 58, 64, 0.03) 0%, #77a2a8 75%, #77a2a8 100%);
            animation: run 7s 0s infinite;
            animation-fill-mode: forwards;
            animation-timing-function: cubic-bezier(0.4, 0.26, 0, 0.97);
        }
        
        .animate_lines .line:nth-child(1) {
            margin-left: 22%;
        }
        
        .animate_lines .line:nth-child(1):after {
            animation-delay: 2s;
        }
        
        .animate_lines .line:nth-child(3) {
            margin-left: 12%;
        }
        
        .animate_lines .line:nth-child(3):after {
            animation-delay: 2.5s;
        }
        
        .animate_lines .line:nth-child(4) {
            margin-left: 80%;
        }
        
        .animate_lines .line:nth-child(4):after {
            animation-delay: 3s;
        }
        
        .animate_lines .line:nth-child(5) {
            margin-left: 85%;
        }
        
        .animate_lines .line:nth-child(5):after {
            animation-delay: 3.5s;
        }
        
        .animate_lines .line:nth-child(6) {
            margin-left: 100%;
        }
        
        .animate_lines .line:nth-child(6):after {
            animation-delay: 1.5s;
        }
        @-webkit-keyframes run{
        	0%{top:-50%}100%{top:110%}
        	}
        	@keyframes run{
        		0%{top:-50%}100%{top:110%}
        		}

    .navbar {
            width: 100%;
            padding: 1rem;
            background: #f3f3f3;
        }
        @media (max-width: 991px) {
            .navbar {
                height: 71px;
            }
        }
        .navbar .navbar-brand {
            color: #343a40;
            font-size: 1.75rem;
        }
        .navbar .navbar-brand img {
            width: 120px;
        }
        @media (max-width: 991px) {
            .navbar .navbar-brand img {
                width: 80px;
            }
        }
        .navbar .navbar-nav .nav-item {
            margin-right: .25rem;
            padding-left: 1.5rem;
            color: #000000;
        }
        @media (max-width: 991px) {
            .navbar .navbar-nav {
                padding: 1rem 1.5rem;
                height: 100%;
            }
            .navbar .navbar-nav .nav-item {
                display: block;
                width: 100%;
                margin-right: 0;
                margin-bottom: .25rem;
            }
        }
        .navbar .navbar-nav .nav-item:last-child {
            margin-right: 0;
        }
        .navbar .navbar-toggler {
            color: #363636;
        }
        @media (max-width: 991px) {
            .navbar .navbar-collapse {
                right: -280px;
                width: 280px;
                background: #fff;
                position: fixed;
                top: 0;
                height: 100%;
                z-index: 999999;
                overflow-y: scroll;
                transition: all .25s ease-out;
            }
            .navbar .navbar-collapse.show {
                right: 0;
            }
            .navbar .navbar-collapse .logo-mobile-menu {
                width: 120px;
            }
            .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
                color: theme-color(dark);
            }
        }
        .sidebar-overlay .home {
            padding-top: 0;
            background-position: 0 -121px;
        }
        .sidebar-overlay #mobile-menu-overlay {
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 99;
            transition: all .8s .35s;
            left: 0;
        }
        .sidebar-overlay .navbar {
            padding: .875rem .1rem;
            position: static;
            z-index: auto;
            background: #17C2D7;
        }
        @media (max-width: 991px) {
            .sidebar-overlay .navbar {
                padding: .875rem 1rem;
            }
        }
        .sidebar-overlay .navbar .navbar-collapse {
            z-index: 100;
        }
        .sidebar-overlay.fixed-on-scroll {
            z-index: auto;
            position: absolute;
            top: 0;
        }

        .footer {
            color: #e5e5e5;
            background: #343a40;
        }
        .footer address {
            position: relative;
            z-index: 2;
            color: #adadad;
        }
        .footer p {
            margin-bottom: .25rem;
        }
        .footer .footer-link {
            color: #e5e5e5;
        }
        .footer .footer-top {
            padding: 74px 0;
        }
        .footer .footer-title {
            font-size: 1.2rem;
            margin-bottom: .875rem;
        }
        .footer .footer-top .social-icons {
            margin-top: 1.25rem;
        }
        .footer .footer-top .social-icons a i {
            font-size: 1.5rem;
            color: #adadad;
            margin-right: 1rem;
            transition: all .3s;
        }
        .footer .footer-top .social-icons a:hover i {
            color: #fff;
        }
        .footer .footer-bottom {
            background: rgba(255, 255, 255, 0.07);
            padding: 10px 0;
            border-top: 1px solid rgba(151, 151, 151, 0.07);
        }
        .footer .footer-bottom img {
            width: 100px;
        }
        .footer .list-footer {
            list-style: none;
            padding-left: 0;
            position: relative;
            z-index: 2;
        }
        .footer .list-footer li a {
            color: #adadad;
            display: block;
            padding: .625rem 0;
            font-size: 14px;
        }
        .popup {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0, 0, 0, 0.4);
        }

        .popup-content {
            background-color: #fefefe;
            margin: 30% ;
            padding: 20px;
            border: 1px solid #888;
            width: 80%;
            max-width: 400px;
            border-radius: 8px;
            position: fixed;
        }

        .popup-close {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 24px;
            cursor: pointer;
        }

        .popup-header {
            font-size: 24px;
            color: #23ff0f;
            margin-bottom: 20px;
            padding-left: 15%;
        }

        .popup-logo img {
            width: 100px;
            margin-bottom: 10px;
        }

        .popup-company {
            font-size: 18px;
            margin-bottom: 20px;
            padding-left: 30%;
        }

        .popup-btn-container {
            text-align: center;
        }

        .popup-btn {
            display: inline-block;
            padding: 10px 20px;
            background-color: #17C2D7;
            color: #fff;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .popup-btn:hover {
            background-color: #17C2D7;
        }
    
    .register-container {
        width: 90%;
        max-width: 700px;
        margin: 0 auto;
        padding: 20px;
        background-color: #fff;
        border-radius: 5px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        z-index: 1; 
    }

    .register-header {
        font-size: 24px;
        padding-top: 100px;
        margin-bottom: 10px;
        text-align: center;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        display: block;
        margin-bottom: 5px;
    }

    .form-group input,
    .form-group select {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 5px;
        box-sizing: border-box;
    }

    .form-row {
        display: flex;
        gap: 10px;
    }

    .form-row .form-group {
        margin-left: 0.85%;
        flex: 1;
    }
    
    .form-group .confirmpassword label{
        margin-left: 0.85%;
        flex: 1;
    }

    .phone-group {
        display: flex;
        align-items: center;
    }

    .phone-input {
        display: flex;
        gap: 10px;
        align-items: center;
        width: 100%;
    }

    .phone-input select {
        flex: 0 0 150px;
    }

    .phone-input input {
        flex: 1;
    }

    .btn-block {
        display: block;
        width: 100%;
        padding-bottom: 100px;
    }

    .register-btn {
        background-color: #17C2D7;
        color: white;
        padding: 10px;
        border: none;
        border-radius: 5px;
        cursor: pointer;
    }

    .register-btn:hover {
        background-color: #138496;
    }
    
    .pdf-preview {
            height: 100px;
            border: 1px solid #ddd;
            margin-top: 10px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
            padding: 30px 40px;
        }

        .png-preview {
            height: 100px;
            border: 1px solid #ddd;
            margin-top: 10px;
            margin-bottom: 20px;
            border-radius: 10px;
            box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.3);
            padding: 30px 40px;
        }    