body {
            background: #0b2a35;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .login-wrapper {
            width: 700px;
            height: 350px;
            position: relative;
            background: #06232c;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 0 30px rgba(0,255,255,0.2);
        }

        /* Right Gradient Side */
        .login-wrapper::before {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, #00bcd4, #009688);
            clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
        }

        .left-panel {
            position: absolute;
            width: 45%;
            height: 100%;
            padding: 60px 50px;
            color: #fff;
            z-index: 2;
        }

        .left-panel h3 {
            margin-bottom: 40px;
            font-weight: 600;
        }

        .form-control {
            background: transparent;
            border: none;
            border-bottom: 1px solid #ccc;
            border-radius: 0;
            color: #fff;
        }

        .form-control:focus {
            background: transparent;
            box-shadow: none;
            border-bottom: 1px solid #00e5ff;
            color: #fff;
        }

        .input-group-text {
            background: transparent;
            border: none;
            color: #ccc;
        }

        .btn-login {
            background: linear-gradient(90deg, #1cdbf0, #08baf0);
            border: red;
            border-radius: 20px;
            padding: 8px;
            font-weight: 500;
            color: #000;
            margin-top: 20px;
        }

        .btn-login:hover {
            opacity: 0.9;
        }

        .signup-text {
            font-size: 14px;
            margin-top: 15px;
        }

        .signup-text a {
            color: #00e5ff;
            text-decoration: none;
        }

        .right-panel {
            position: absolute;
            right: 0;
            width: 55%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 40px;
            z-index: 1;
        }

        .right-panel h2 {
            font-weight: 700;
        }

        .right-panel p {
            font-size: 14px;
            max-width: 300px;
            margin: auto;
        }

        /* Mobile Friendly */
        @media (max-width: 768px) {

            .login-wrapper {
                flex-direction: column;
            }

            .login-wrapper::before {
                width: 100%;
                height: 45%;
                clip-path: none;
            }

            .left-panel,
            .right-panel {
                width: 100%;
                padding: 40px 30px;
            }

            .right-panel {
                order: -1; /* Show welcome section on top */
                height: 200px;
            }

            .left-panel {
                padding-top: 30px;
            }
        }
