body {
    background-image: linear-gradient(to right, #4f46e5, #6b21a8);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
}

.container {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    padding-top: 4rem; /* Adjust padding from the top */
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    text-align: center;
    width: 100%;
    height: 70%;
    max-width: 500px;
    animation: fadeIn 1.5s ease-in-out;
    flex-grow: 1;
}

        .password-box {
            margin-top: 1rem;
            padding: 0.75rem;
            border: 1px solid #d1d5db;
            border-radius: 6px;
            background-color: #ffffff;
            color: #333;
        }
        .copy-btn {
            margin-top: 1rem;
            background-color: #4f46e5;
            color: white;
            padding: 0.75rem 1.5rem;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .copy-btn:hover {
            background-color: #4338ca;
            transform: translateY(-2px);
        }
        .slider {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 8px;
            background: #d1d5db;
            border-radius: 5px;
            outline: none;
            opacity: 0.9;
            transition: opacity 0.2s;
        }
        .slider:hover {
            opacity: 1;
        }
        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        footer {
            text-align: center;
            font-size: 0.875rem;
            color: #d1d5db;
            padding: 1rem;
            background-color: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 8px;
            width: 100%;
        }
        
        footer a {
            color: #4f46e5;
            text-decoration: none;
        }
        
        footer a:hover {
            text-decoration: underline;
        }
