
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
            min-height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            position: relative;
            overflow: hidden;
        }

        /* Animated Background Elements */
        .background-showcase {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
        }

        .floating-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(15px);
            border-radius: 25px;
            padding: 35px;
            border: 2px solid rgba(255, 255, 255, 0.25);
            color: white;
            animation: float 20s infinite ease-in-out;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
            transition: all 0.3s ease;
        }

        .floating-card:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: scale(1.05);
            box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
        }

        /* Development Card */
        .card-1 {
            top: 8%;
            left: 5%;
            width: 320px;
            animation-delay: 0s;
        }

        /* Design Card */
        .card-2 {
            top: 12%;
            right: 6%;
            width: 300px;
            animation-delay: 3s;
        }

        /* Marketing Card */
        .card-3 {
            bottom: 12%;
            left: 7%;
            width: 310px;
            animation-delay: 6s;
        }

        /* Stats Card */
        .card-4 {
            bottom: 2%;
            right: 5%;
            width: 280px;
            animation-delay: 9s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            25% {
                transform: translateY(-25px) rotate(2deg);
            }
            50% {
                transform: translateY(-15px) rotate(-2deg);
            }
            75% {
                transform: translateY(-35px) rotate(1deg);
            }
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .card-svg {
            width: 60px;
            height: 60px;
            animation: iconFloat 3s infinite ease-in-out;
        }

        @keyframes iconFloat {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .card-title {
            font-size: 22px;
            font-weight: 700;
        }

        .card-description {
            font-size: 14px;
            opacity: 0.95;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .card-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 15px;
        }

        .feature-tag {
            background: rgba(255, 255, 255, 0.2);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .stat-item {
            text-align: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
        }

        .stat-number {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 8px;
            display: block;
        }

        .stat-label {
            font-size: 13px;
            opacity: 0.95;
        }

        /* Decorative SVG elements */
        .bg-svg {
            position: absolute;
            opacity: 0.08;
            pointer-events: none;
        }

        .bg-svg-1 {
            top: 5%;
            left: 40%;
            width: 150px;
            animation: rotate 30s infinite linear;
        }

        .bg-svg-2 {
            bottom: 10%;
            right: 35%;
            width: 120px;
            animation: rotate 25s infinite linear reverse;
        }

        .bg-svg-3 {
            top: 40%;
            left: 10%;
            width: 100px;
            animation: rotate 35s infinite linear;
        }

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        /* Decorative circles */
        .bg-decoration {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.05);
            animation: pulse 15s infinite ease-in-out;
        }

        .circle1 {
            width: 400px;
            height: 400px;
            top: -200px;
            right: -100px;
            animation-delay: 0s;
        }

        .circle2 {
            width: 350px;
            height: 350px;
            bottom: -180px;
            left: -80px;
            animation-delay: 5s;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.05;
            }
            50% {
                transform: scale(1.15);
                opacity: 0.12;
            }
        }

        /* Login Form Container */
        .login-container {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            border-radius: 30px;
            box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
            width: 100%;
            max-width: 480px;
            padding: 50px 45px;
            position: relative;
            z-index: 10;
            animation: slideUp 0.8s ease-out;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px) scale(0.95);
            }
            to {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }

        .logo-section {
            text-align: center;
            margin-bottom: 40px;
        }

        .logo {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 18px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            animation: logoPulse 2s infinite;
        }

        @keyframes logoPulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .logo svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .brand-name {
            font-size: 32px;
            font-weight: 700;
            color: #4c5270;
            margin-bottom: 8px;
        }

        .tagline {
            font-size: 14px;
            color: #8b92b0;
            font-weight: 400;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #4c5270;
            font-weight: 600;
            font-size: 14px;
        }

        .input-wrapper {
            position: relative;
        }

        .input-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: #8b92b0;
            font-size: 20px;
        }

        input {
            width: 100%;
            padding: 16px 20px 16px 50px;
            border: 2px solid #e8e9f3;
            border-radius: 15px;
            font-size: 15px;
            transition: all 0.3s ease;
            background: #f8f9ff;
            color: #4c5270;
        }

        input:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
        }

        .remember-forgot {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            font-size: 14px;
        }

        .remember-me {
            display: flex;
            align-items: center;
            color: #4c5270;
            cursor: pointer;
        }

        .remember-me input[type="checkbox"] {
            width: 18px;
            height: 18px;
            margin-right: 8px;
            padding: 0;
            cursor: pointer;
            accent-color: #667eea;
        }

        .forgot-password {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .forgot-password:hover {
            color: #764ba2;
        }

        .login-btn {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            border-radius: 15px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
        }

        .login-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .login-btn:hover::before {
            left: 100%;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
        }

        .login-btn:active {
            transform: translateY(0);
        }

        .divider {
            text-align: center;
            margin: 30px 0;
            position: relative;
        }

        .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: #e8e9f3;
        }

        .divider span {
            background: rgba(255, 255, 255, 0.98);
            padding: 0 15px;
            color: #8b92b0;
            font-size: 14px;
            position: relative;
            z-index: 1;
        }

        .social-login {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

        .social-btn {
            flex: 1;
            padding: 14px;
            border: 2px solid #e8e9f3;
            border-radius: 12px;
            background: white;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .social-btn svg {
            width: 24px;
            height: 24px;
        }

        .social-btn:hover {
            border-color: #667eea;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .signup-link {
            text-align: center;
            color: #8b92b0;
            font-size: 14px;
        }

        .signup-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s ease;
        }

        .signup-link a:hover {
            color: #764ba2;
        }

        @media (max-width: 768px) {
            .floating-card {
                display: none;
            }

            .bg-svg {
                display: none;
            }

            .login-container {
                padding: 40px 30px;
                max-width: 420px;
            }

            .brand-name {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .login-container {
                padding: 30px 25px;
            }

            .bg-decoration {
                display: none;
            }
        }
    