<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>¡Bienvenido al equipo!</title>
</head>
<body style="font-family: Arial, sans-serif; background: #f7f7f7; padding: 20px;">
    <div style="max-width: 600px; margin: auto; background: #fff; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.05); padding: 32px;">
        <h2 style="color: #333;">¡Bienvenido, {{ name }}!</h2>
        <p>
            Tu cuenta ha sido creada:
        </p>
        <ul>
            <li><strong>Clave:</strong> {{ password }}</li>
        </ul>
        <p>
            Saludos cordiales,<br>
            El equipo de KRONOS
        </p>
    </div>
</body>
</html>