/* Layout */
        .split-screen {
            display: flex;
            height: 100vh;
            width: 100vw;
            padding: 10px;
        }

        /* LEFT SIDE */
        .left-pane {
            width: 50%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            padding-bottom: 0;
            border-radius: 45px;
            border: 4px solid;

        }

        .left-pane img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top;
        }

        /* RIGHT SIDE */
        .right-pane {
            width: 50%;
            background: #ffffff;
            padding: 25px 70px;
            /*display: flex;*/
   
            /*flex-direction: column;*/
            /*justify-content: space-between;*/
            overflow-y: auto;
        }

.welcodetext{
    font-size: 36px;
    font-weight: 500;
    color: #141526;
    margin-bottom: 10px !important;
}



        .logo {
            margin-bottom: 26px;
            display: block;
            text-decoration: none;
        }

        .logo-img {
            max-width: 100%;
            height: auto;
            max-height: 30px;
            display: block;
        }

        .content-wrapper h1 {
            font-size: 36px;
            font-weight: 500;
            color: #141526;
            margin-bottom: 10px !important;
        }

        .subtitle {
            font-size: 20px;
            color: #363966;
            margin-bottom: 1rem;
            max-width: 90%;
        }

        .divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, #1C4D8D 0%, #00000000 100%);
            margin-bottom: 2.5rem;
            border: none;
        }

        form {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        label {
            display: block;
            font-size: 16px;
            font-weight: 700;
            color: #363966;
            text-transform: uppercase;
            margin-bottom: 0.5rem;
        }

        .input-box {
            width: 100%;
            padding: 11px 1rem;
            border: 1px solid #1415261A;
            border-radius: 20px;
            background: #fff;
            outline: none;
            font-size: 20px;
            transition: all 0.2s;
            color: #141526;
        }

        .input-box:focus {
            border-color: #1e3a8a;
            box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.1);
        }

        .select-wrapper {
            position: relative;
        }

        select.input-box {
            appearance: none;
            cursor: pointer;
            color: #111827;
        }

        .select-icon {
            position: absolute;
            right: 1rem;
            color: #141526;
            top: 50%;
            transform: translateY(-50%);
            pointer-events: none;
        }

        /* Login Button */
        .btn-submit {
            width: 100%;
            text-align: center;
            padding: 10px 0;
            background-color: #141526;
            color: white;
            border: none;
            border-radius: 20px;
            font-size: 20px;
            font-weight: 500;
            cursor: pointer;
            transition: background 0.2s;
        }

        .btn-submit:hover {
            background-color: #1e293b;
        }

        /* Footer */
        .footer-text {
            margin-top: 1rem;
            font-size: 20px;
            color: #4b5563;
            font-weight: 500;
        }

        .footer-text a {
            color: #006FFF;
            text-decoration: none;
            font-weight: 800;
            font-size: 18px;
        }
        
              .divider {
            width: 100%;
            height: 1px;
            margin: 20px 0;
        }

        /* Tabs */
        .role-tabs {
            display: flex;
            gap: 12px;
            margin-bottom: 20px;
        }



        .role-btn {
            flex: 1;
            padding: 10px 2px;
            border-radius: 20px;
            border: 1px solid #1415261A;
            background: #fff;
            font-weight: 600;
            cursor: pointer;
        }

        .role-btn.active {
            /*background: #141526;*/
                background-image: linear-gradient(135deg, #141526, #2531c1);
            color: white;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .right-pane {
                padding: 3rem;
            }
        }

        @media (max-width:991px) {
            .left-pane {
                display: none;
            }
            
                .right-pane {
            width: 100%;}
        }

        @media (max-width: 768px) {
            .split-screen {
                flex-direction: column;
                overflow: auto;
            }

            .role-btn {
                padding: 5px 2px;
            }

            .role-btn {
                font-size: 13px !important;
            }


            .right-pane {
                width: 100%;
                padding: 10px;
                height: auto;

            }

            form {
                gap: 20px;
            }
        }