        /* Full-page splash */
        .splash {
            position: fixed;
            width: 100%;
            height: 100%;
            background: white;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: all 1s ease-in-out;
        }

        /* Container for all splash content */
        .splash-content {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            transition: all 1s ease-in-out;
        }

        /* Splash Image */
        .splash-image {
            max-width: 100%;
            max-height: 50%;
            object-fit: contain;
            transition: all 1s ease-in-out;
        }

        /* Logo Container */
        .blank {
            position: absolute;
            font-size: 50px;
            font-family: "Dancing Script", cursive;
            color: #ff0015;
            text-align: center;
            background: white;
            padding: 10px 20px;
            white-space: nowrap;
            overflow: hidden;
            width: 570px;
            height: 70px;
            border-top: 1px solid #c89a60;
            border-bottom: 1px solid #c89a60;
            display: flex;
            justify-content: center;
            align-items: center;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Animated "Kailtech" Text */
        .logo {
            font-size: 70px;
            font-family: "Dancing Script", cursive;
            color: #987142;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            animation: typing 1s steps(20, end) forwards;
        }

        /* Typing Animation */
        @keyframes typing {
            from {
                width: 0px;
            }

            to {
                width: 220px;
            }
        }

        /* Move to Left Half */
        .move-left {
            width: 50%;
            left: 0;
            display: flex;
            justify-content: center;
            /*padding-right: 5%;*/
            align-items: center;
        }

        /* Ensure splash-content remains centered in the half */
        .move-left .splash-content {
            transform: translateX(0%);
        }

        /* Login Page */
        .login-page {
            position: fixed;
            right: 0;
            top: 0;
            width: 50%;
            height: 100%;
            background: #f8f9fa;
            display: flex;
            justify-content: left;
            padding-left: 5%;
            align-items: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .login-container {
            width: 350px;
            background: radial-gradient(circle, #f9c480 40%, #e08e4f 100%);
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            border-radius: 10px;
        }

        .login-box-msg {
            font-size: 20px;
            font-weight: bold;
            color: #4d3d2c;
        }

        .login-box-body {
            background: transparent;
        }

        .btn-primary {
            background: #4d3d2c;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background: #7e5f3d;
            color: white;
            border: none;
        }