        body {
            margin: 0;
            padding: 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            font-family: "Lato", sans-serif;
        }

        .overlay {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 50%;
            background-image: url(/img/network-login-overlay.png);
            background-size: cover;
            opacity: 0.2;
            z-index: -1;
        }

        .gradient {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            background: linear-gradient(to bottom right, #ffdd00, #fbb034);
            z-index: -2;
        }

        .container {
            position: relative;
            width: 100%;
            display: flex;
            flex-direction: row;
        }

        .left-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            height: 70%;
            align-items: center;
            justify-content: center;
            background: transparent;
        }

        .login-form {
            width: 350px;
            height: 400px;
            background: #ffffff;
            padding: 20px;
            border-radius: 20px;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 4px rgba(0, 0, 0, 0.2);
            margin-bottom: 20px;
            margin: 0 auto;
            text-align: center;
        }

        .login-form input[type="text"],
        .login-form input[type="password"] {
            width: 80%;
            padding: 10px;
            margin-bottom: 10px;
            border: none;
            border-bottom: 1px solid #ffdd00;
            color: #ffdd00;
            transition: border-bottom-color 0.3s;
        }

        .login-form input[type="text"]:focus,
        .login-form input[type="password"]:focus {
            border-bottom-color: #ffdd00;
            outline: none;
        }

        .login-form input[type="text"]::placeholder,
        .login-form input[type="password"]::placeholder {
            color: #ffdd00;
        }

        .error-message {
            color: red;
            font-size: 14px;
        }

        .logo-overlay {
            position: absolute;
            top: -70px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 150px;
            background: url('https://lh3.googleusercontent.com/a/AGNmyxaphWlisNegZNbKCY3uZRMmRVrKbmJF22wutcuO=s360-c-no');
            background-size: cover;
            background-position: center;
            border-radius: 50%;
            box-shadow: 0 10px 4px rgba(0, 0, 0, 0.1);
            z-index: 2;
        }

        .welcome-text {
            text-align: center;
            margin-bottom: 30px;
            font-size: 18pt;
            font-weight: bold;
            background: linear-gradient(to right, #ffdd00, #fbb034);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Additional styling for form elements (example) */
        .login-form input[type="submit"] {
            width: 80%;
            max-width: 100%;
            padding: 10px;
            background: #fbb034;
            border: none;
            color: #ffffff;
            font-weight: bold;
            cursor: pointer;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
            z-index: 1;
            border-radius: 10px;
            font-size: 12pt;
        }

        .login-form input[type="submit"]:hover {
            animation: pulse 1s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .right-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: transparent;
        }

        .slider {
            width: 300px;
            height: 300px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .chart-icon {
            font-size: 80pt;
            color: #ffffff;
            padding-bottom: 60px;
        }

        .analytics-heading {
            color: #ffffff;
            margin: 10px 0;
            font-size: 20pt;
        }

        .analytics-text {
            color: #ffffff;
        }

        /* Additional slide */
        .slider-slide {
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .slider-slide.active {
            display: flex;
        }

        .slider-slide .slide-icon {
            font-size: 80pt;
            color: #ffffff;
        }

        .slider-slide .slide-title {
            color: #ffffff;
            margin: 10px 0;
            font-size: 20pt;
        }

        .slider-slide .slide-text {
            color: #ffffff;
            font-size: 14pt;
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            margin-top: 20px;
        }

        .slider-dot {
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: #ffffff;
            margin: 0 5px;
            transition: background 0.3s;
        }

        .slider-dot.active .inner-dot {
            background: linear-gradient(to bottom right, #ffdd00, #fbb034);
        }

        .inner-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ffffff;
            margin: 2.1px;
            transition: background 0.3s;
        }