        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            /* font-family: 'Comic Sans MS', cursive, sans-serif; */
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        /* Animated Background Icons */
        .floating-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .floating-icon {
            position: absolute;
            font-size: 30px;
            opacity: 0.7;
            animation: floatMove 15s linear infinite;
        }

        /* Different floating animations for variety */
        @keyframes floatMove {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.7;
            }

            90% {
                opacity: 0.7;
            }

            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes floatSide {
            0% {
                transform: translateX(-100px) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.6;
            }

            90% {
                opacity: 0.6;
            }

            100% {
                transform: translateX(100vw) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes floatDiagonal {
            0% {
                transform: translate(-50px, 100vh) rotate(0deg);
                opacity: 0;
            }

            10% {
                opacity: 0.5;
            }

            90% {
                opacity: 0.5;
            }

            100% {
                transform: translate(100vw, -50px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Icon specific animations */
        .floating-icon:nth-child(1) {
            animation: floatMove 12s linear infinite;
            animation-delay: 0s;
            left: 10%;
        }

        .floating-icon:nth-child(2) {
            animation: floatSide 18s linear infinite;
            animation-delay: 2s;
            top: 20%;
        }

        .floating-icon:nth-child(3) {
            animation: floatMove 15s linear infinite;
            animation-delay: 4s;
            left: 80%;
        }

        .floating-icon:nth-child(4) {
            animation: floatDiagonal 20s linear infinite;
            animation-delay: 6s;
        }

        .floating-icon:nth-child(5) {
            animation: floatMove 14s linear infinite;
            animation-delay: 8s;
            left: 60%;
        }

        .floating-icon:nth-child(6) {
            animation: floatSide 16s linear infinite;
            animation-delay: 10s;
            top: 70%;
        }

        .floating-icon:nth-child(7) {
            animation: floatMove 13s linear infinite;
            animation-delay: 12s;
            left: 30%;
        }

        .floating-icon:nth-child(8) {
            animation: floatDiagonal 22s linear infinite;
            animation-delay: 14s;
        }

        .floating-icon:nth-child(9) {
            animation: floatMove 17s linear infinite;
            animation-delay: 16s;
            left: 90%;
        }

        .floating-icon:nth-child(10) {
            animation: floatSide 19s linear infinite;
            animation-delay: 18s;
            top: 40%;
        }

        .floating-icon:nth-child(11) {
            animation: floatMove 11s linear infinite;
            animation-delay: 20s;
            left: 40%;
        }

        .floating-icon:nth-child(12) {
            animation: floatDiagonal 25s linear infinite;
            animation-delay: 22s;
        }

        /* Pulsing background elements */
        .pulse-elements {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .pulse-element {
            position: absolute;
            font-size: 40px;
            opacity: 0.3;
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.3;
            }

            50% {
                transform: scale(1.2);
                opacity: 0.6;
            }
        }

        .pulse-element:nth-child(1) {
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .pulse-element:nth-child(2) {
            top: 15%;
            right: 8%;
            animation-delay: 1s;
        }

        .pulse-element:nth-child(3) {
            bottom: 20%;
            left: 10%;
            animation-delay: 2s;
        }

        .pulse-element:nth-child(4) {
            bottom: 15%;
            right: 15%;
            animation-delay: 3s;
        }

        .login-container {
            background: white;
            border-radius: 25px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            width: 400px;
            text-align: center;
            /* position: relative; */
            z-index: 10;
            overflow: hidden;
        }

        .login-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23FFD700" opacity="0.6"/><circle cx="80" cy="30" r="1.5" fill="%23FF69B4" opacity="0.4"/><circle cx="40" cy="70" r="1" fill="%2300CED1" opacity="0.5"/><circle cx="90" cy="80" r="2.5" fill="%23FFB6C1" opacity="0.3"/></svg>') repeat;
            animation: float 20s linear infinite;
            pointer-events: none;
        }

        @keyframes float {
            0% {
                transform: translateY(0px) rotate(0deg);
            }

            100% {
                transform: translateY(-20px) rotate(360deg);
            }
        }

        .character {
            width: 100px;
            height: 100px;
            margin: 0 auto 20px;
            background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            animation: bounce 2s infinite;
            position: relative;
            z-index: 2;
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0);
            }

            40% {
                transform: translateY(-10px);
            }

            60% {
                transform: translateY(-5px);
            }
        }

        h1 {
            color: #333;
            font-size: 28px;
            margin-bottom: 10px;
            background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            z-index: 2;
        }

        .subtitle {
            color: #666;
            margin-bottom: 30px;
            font-size: 16px;
            position: relative;
            z-index: 2;
        }

        .form-group {
            margin-bottom: 20px;
            text-align: left;
            position: relative;
            z-index: 2;
        }

        label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: bold;
            font-size: 14px;
        }

        input {
            width: 100%;
            padding: 15px;
            border: 3px solid #E0E0E0;
            border-radius: 15px;
            font-size: 16px;
            font-family: inherit;
            transition: all 0.3s ease;
            position: relative;
            z-index: 2;
        }

        input:focus {
            outline: none;
            border-color: #4ECDC4;
            box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
            transform: scale(1.02);
        }

        .login-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
            color: white;
            border: none;
            border-radius: 25px;
            font-size: 18px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 20px 0;
            position: relative;
            z-index: 2;
        }

        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 107, 107, 0.4);
        }

        .register-link {
            color: #4ECDC4;
            text-decoration: none;
            font-weight: bold;
        }

        .register-link:hover {
            text-decoration: underline;
        }

        .fun-elements {
            position: absolute;
            top: 10px;
            right: 10px;
            font-size: 20px;
            animation: wiggle 1s ease-in-out infinite alternate;
            z-index: 3;
        }

        @keyframes wiggle {
            0% {
                transform: rotate(-5deg);
            }

            100% {
                transform: rotate(5deg);
            }
        }

        /* Corner decorative elements */
        .corner-decoration {
            position: absolute;
            font-size: 25px;
            animation: spin 8s linear infinite;
        }

        .corner-decoration.top-left {
            top: 15px;
            left: 15px;
            animation-delay: 0s;
        }

        .corner-decoration.bottom-right {
            bottom: 15px;
            right: 15px;
            animation-delay: 4s;
        }

        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }