    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    body {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        background: #181b27;
    }
    
    body::before {
        content: "";
        display: block;
        background-image: url(https://animeclips.online/wp-content/plugins/uicore-framework/assets/img/noise.webp);
        opacity: 0.3;
        background-repeat: repeat;
        background-size: 257px auto;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        pointer-events: none;
        z-index: 99999998;
    }
    
    .logo {
        position: absolute;
        top: 3rem;
        left: 40%;
    }
    
    .logo:hover {
        color: rgb(231, 59, 88);
        animation: bounce 0.5s infinite alternate;
    }
    
    @keyframes bounce {
        to {
            transform: translateY(-5px);
        }
    }
    
    .container {
        width: 450px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(150, 101, 101, 0.05);
        position: relative;
        /* added this */
        z-index: 99999999;
        /* added this */
    }
    
    .container {
        width: 450px;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 10px 20px rgba(150, 101, 101, 0.05);
    }
    
    .container h2 {
        font-weight: 600;
        font-size: 1.31rem;
        padding: 1rem 1.75rem;
        border-bottom: 1px solid #d4dbe5;
    }
    
    .wrapper {
        margin: 1.25rem 1.75rem;
    }
    
    .wrapper .input-box {
        position: relative;
    }
    
    .input-box input {
        width: 100%;
        height: 53px;
        color: #000;
        background: none;
        font-size: 1.06rem;
        font-weight: 500;
        border-radius: 4px;
        letter-spacing: 1.4px;
        border: 1px solid #aaa;
        padding: 0 2.85rem 0 1rem;
    }
    
    .input-box span {
        position: absolute;
        right: 13px;
        cursor: pointer;
        line-height: 53px;
        color: #030303;
    }
    
    .input-box span:hover {
        color: #884dcf !important;
    }
    
    .wrapper .pass-indicator {
        width: 100%;
        height: 4px;
        position: relative;
        margin-top: 0.75rem;
        border-radius: 25px;
    }
    
    .pass-indicator::before {
        position: absolute;
        content: "";
        height: 100%;
        width: 50%;
        border-radius: inherit;
        transition: width 0.3s ease;
    }
    
    .pass-indicator#weak::before {
        width: 20%;
        background: #e64a4a;
    }
    
    .pass-indicator#medium::before {
        width: 50%;
        background: #f1c80b;
    }
    
    .pass-indicator#strong::before {
        width: 100%;
        background: #43A047;
    }
    
    .wrapper .pass-length {
        margin: 1.56rem 0 1.25rem;
    }
    
    .pass-length .details {
        display: flex;
        justify-content: space-between;
    }
    
    .pass-length input {
        width: 100%;
        height: 5px;
        accent-color: #645BCA;
    }
    
    .pass-settings .options {
        display: flex;
        list-style: none;
        flex-wrap: wrap;
        margin-top: 1rem;
    }
    
    .pass-settings .options .option {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        width: calc(100% / 2);
    }
    
    .options .option input {
        height: 16px;
        width: 16px;
        cursor: pointer;
        accent-color: #2F3349;
    }
    
    .options .option label {
        cursor: pointer;
        color: #292929;
        padding-left: 0.63rem;
    }
    
    .wrapper .generate-btn {
        width: 100%;
        color: #fff;
        border: none;
        outline: none;
        cursor: pointer;
        background: #2F3349;
        font-size: 1.06rem;
        padding: 0.94rem 0;
        border-radius: 5px;
        text-transform: uppercase;
        margin: 0.94rem 0 1.3rem;
    }
    
    .generate-btn:hover {
        width: 100%;
        color: #fff;
        border: none;
        outline: none;
        cursor: pointer;
        background: #645BCA;
        font-size: 1.06rem;
        padding: 0.94rem 0;
        border-radius: 5px;
        text-transform: uppercase;
        margin: 0.94rem 0 1.3rem;
        transition: all 0.5s ease;
    }
    
    .notification {
        position: fixed;
        top: 1rem;
        right: 1rem;
        background-color: #fdfdfd;
        padding: 10px;
        border-radius: 5px;
        color: rgb(15, 15, 15);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
        display: none;
        /* hide by default */
        animation: fadeOut 2s forwards;
        /* add animation */
    }
    
    .notification.show {
        display: block;
        /* show when notification is triggered */
        animation: fadeIn 0.5s forwards;
        /* add animation */
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeOut {
        from {
            opacity: 1;
            transform: translateY(0);
        }
        to {
            opacity: 0;
            transform: translateY(-20px);
        }
    }
    /* Add this to your stylesheet (e.g., style.css) */
    
    .copyright-footer {
        position: fixed;
        bottom: 0;
        right: 0;
        padding: 10px;
        color: #919191;
        font-size: 12px;
        text-align: right;
    }
    
    .copyright-footer:hover {
        color: #ffffff;
        transition: all 0.5s ease;
    }
    
    .copyright-footer p {
        margin: 0;
    }
    /* Make the layout responsive */
    /* For screens with a maximum width of 768px (e.g., tablets) */
    
    @media only screen and (max-width: 768px) {
        .container {
            width: 90%;
            margin: 40px auto;
        }
        .logo {
            top: 2rem;
            left: 30%;
        }
        .wrapper {
            margin: 1.25rem 1.75rem;
        }
        .generate-btn {
            font-size: 1rem;
        }
        .copyright-footer {
            font-size: 10px;
        }
    }
    /* For screens with a maximum width of 480px (e.g., mobile phones) */
    
    @media only screen and (max-width: 480px) {
        .container {
            width: 95%;
            margin: 20px auto;
        }
        .logo {
            top: 1.5rem;
            left: 25%;
        }
        .wrapper {
            margin: 1rem 1.25rem;
        }
        .generate-btn {
            font-size: 0.9rem;
        }
        .copyright-footer {
            font-size: 9px;
        }
    }
    /* Fix logo position on mobile */
    
    @media only screen and (max-width: 480px) {
        .logo {
            left: 50%;
            transform: translateX(-50%);
        }
    }