<!DOCTYPE html>
<html lang="es">
    <head>
        <meta charset="UTF-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <title>Validación de Registro - Emma Inmobiliaria</title>
        <style>
            body {
                font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
                background-color: #f8fafc;
                padding: 20px;
                margin: 0;
                color: #334155;
                line-height: 1.6;
            }
            .container {
                max-width: 600px;
                margin: 20px auto;
                background: #ffffff;
                border-radius: 12px;
                box-shadow: 0 4px 24px rgba(0,0,0,0.08);
                overflow: hidden;
            }
            .header {
                background-color: #4b7878;
                color: white;
                padding: 25px 30px;
                text-align: center;
                font-size: 24px;
                font-weight: 600;
            }
            .logo {
                max-width: 280px;
                height: auto;
                margin-bottom: 10px;
                width: 280px;
                height: 32px;
                background-image: url('https://data.quinielavzla.com/public/images/logo-nobackground-2-1001.png');
                background-repeat: no-repeat;
                background-size: 280px 32px;
                background-position: center;
            }
            .content {
                padding: 30px;
            }
            .message {
                font-size: 16px;
                margin-bottom: 25px;
            }
            .code-box {
                background-color: #eff6ff;
                border: 2px solid #bfdbfe;
                border-radius: 8px;
                text-align: center;
                padding: 20px;
                margin: 25px 0;
                font-size: 28px;
                font-weight: bold;
                letter-spacing: 4px;
                color: #000000;
                font-family: 'Courier New', monospace;
            }
            .button {
                display: inline-block;
                background-color: #4b7878;
                color: white;
                text-decoration: none;
                padding: 12px 24px;
                border-radius: 6px;
                font-weight: 500;
                margin: 15px 0;
            }
            .footer {
                text-align: center;
                font-size: 14px;
                color: #64748b;
                padding: 20px;
                border-top: 1px solid #e2e8f0;
                background-color: #f8fafc;
            }
            .social-links {
                margin: 20px 0;
            }
            .social-links a {
                margin: 0 10px;
                text-decoration: none;
            }
            .highlight {
                color: #4b7878;
                font-weight: 600;
            }
            .small-text {
                font-size: 14px;
                color: #64748b;
            }
        </style>
    </head>
    <body>
        <div class="container">

            {% block body %}{% endblock %}
            
            <div class="footer">
                <p>© 2023|{{ "now"|date("Y") }} Emma Inmobiliaria. Todos los derechos reservados.</p>
            </div>
        </div>
    </body>
</html>
