/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: Aug 17 2024 | 15:09:43 */
   <style>
        body {
            font-family: Arial, sans-serif;
            background-color: #1a1a1a;
            color: #ffffff;
            text-align: center;
            padding: 50px;
        }

        h1 {
            color: #ffcc00;
        }

        .generator {
            margin: 20px auto;
            padding: 20px;
            background-color: #333;
            border-radius: 10px;
            box-shadow: 0 0 10px #000;
            max-width: 500px;
        }

        .generate-btn {
            background-color: #28a745; /* Cor verde */
            color: #fff;
            border: none;
            padding: 15px 30px;
            font-size: 18px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .generate-btn:hover {
            background-color: #218838; /* Cor verde mais escura ao passar o mouse */
        }

        .progress-container {
            width: 100%;
            background-color: #555;
            border-radius: 5px;
            margin-top: 20px;
            display: none;
        }

        .progress-bar {
            width: 0;
            height: 30px;
            background-color: #00cc66;
            border-radius: 5px;
        }

        .account-details {
            display: none;
            margin-top: 20px;
        }

        .account-details p {
            font-size: 18px;
        }

        .account-details p span {
            font-weight: bold;
            color: #ffcc00;
        }
    </style>