
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            background-color: #0a0a0a;
            color: #ffffff;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow: hidden;
            position: relative;
        }

        /* Ambient background animations */
        .bg-glow-1, .bg-glow-2 {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            z-index: 0;
        }

        .bg-glow-1 {
            width: 350px;
            height: 350px;
            background: rgba(255, 65, 108, 0.15); /* Premium Red */
            top: -100px;
            left: -100px;
            animation: float1 8s infinite alternate ease-in-out;
        }

        .bg-glow-2 {
            width: 450px;
            height: 450px;
            background: rgba(100, 100, 100, 0.1); /* Silver/Grey */
            bottom: -150px;
            right: -100px;
            animation: float2 10s infinite alternate ease-in-out;
        }

        @keyframes float1 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(50px, 50px) scale(1.2); }
        }

        @keyframes float2 {
            0% { transform: translate(0, 0) scale(1); }
            100% { transform: translate(-50px, -50px) scale(1.1); }
        }

        /* Login Box */
        .login-wrapper {
    position: relative;
            background: rgba(20, 20, 20, 0.6);
            backdrop-filter: blur(15px);
            -webkit-backdrop-filter: blur(15px);
            padding: 50px 40px;
            border-radius: 20px;
            width: 100%;
            max-width: 400px;
            z-index: 1;
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
            animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
            transform: translateY(30px);
        }

.login-wrapper::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    padding: 2px; /* Border thickness */
    background: linear-gradient(90deg, #ff416c, rgba(255, 65, 108, 0.1), #ff4b2b, rgba(255, 65, 108, 0.1), #ff416c);
    background-size: 200% 100%;
    animation: formBorderFlow 5s linear infinite;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

@keyframes formBorderFlow {
    0% { background-position: 200% 0; }
    100% { background-position: 0% 0; }
}

        @keyframes fadeUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .logo {
            width: 180px;
            display: block;
            margin: 0 auto 20px auto;
        }

        .login-wrapper h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 35px;
            letter-spacing: 1px;
            background: linear-gradient(to right, #ffffff, #ff416c);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .input-group {
            position: relative;
            margin-bottom: 25px;
        }

        .input-group input {
            width: 100%;
            padding: 15px 20px;
            background: rgba(0, 0, 0, 0.3);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            color: #ffffff;
            font-size: 14px;
            outline: none;
            transition: all 0.3s ease;
        }

        .input-group input:focus {
            border-color: #ff416c;
            box-shadow: 0 0 15px rgba(255, 65, 108, 0.1);
            background: rgba(0, 0, 0, 0.5);
        }

        .input-group label {
            position: absolute;
            top: 50%;
            left: 20px;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.4);
            font-size: 14px;
            pointer-events: none;
            transition: all 0.3s ease;
        }

        /* Floating label animation */
        .input-group input:focus ~ label,
        .input-group input:valid ~ label {
            top: -10px;
            left: 15px;
            font-size: 12px;
            background: #141414;
            padding: 0 5px;
            color: #ff416c;
            border-radius: 3px;
        }

        .options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            font-size: 12px;
        }

        .options label {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.6);
            cursor: pointer;
        }

        .options input[type="checkbox"] {
            margin-right: 8px;
            accent-color: #ff416c;
        }

        .options a {
            color: #ff416c;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .options a:hover {
            color: #ffffff;
            text-shadow: 0 0 5px rgba(255, 65, 108, 0.5);
        }

        button {
            width: 100%;
            padding: 15px;
            background: linear-gradient(45deg, #ff416c, #ff4b2b);
            color: #ffffff;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 65, 108, 0.3);
        }

        button:active {
            transform: translateY(1px);
        }

        .register-link {
            text-align: center;
            margin-top: 25px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
        }

        .register-link a {
            color: #D4AF37;
            text-decoration: none;
            font-weight: 600;
        }

        .register-link a:hover {
            text-decoration: underline;
        }
   