<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Account Created</title>
        <style>
            body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
            padding: 20px;
            }
            .email-container {
            background: white;
            padding: 30px;
            border-radius: 6px;
            box-shadow: 0 0 10px rgba(0,0,0,0.05);
            max-width: 600px;
            margin: 0 auto;
            }
            .footer {
            margin-top: 20px;
            font-size: 12px;
            color: #888;
            }
        </style>
    </head>
<body>
    <div class="email-container">
        <h2>Hello <%= name %>,</h2>
        <p><%= message %></p>

        <p>Here are your login credentials:</p>
        <ul>
        <li><strong>Email:</strong> <%= email %></li>
        <li><strong>Password:</strong> <%= password %></li>
        </ul>

        <p>We recommend changing your password after your first login.</p>

        <p>Regards,<br>The Kanzy Team</p>

        <div class="footer">
            This is an automated message, please do not reply.
        </div>
    </div>
</body>
</html>
