<?php /** @var string $content */ ?>
<!doctype html>
<html lang="es">
<head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title><?= e($title ?? 'CRM Agro') ?></title>
    <link rel="stylesheet" href="<?= asset('css/app.css') ?>">
</head>
<body class="auth-body">
    <main class="auth-wrapper">
        <section class="auth-card">
            <div class="brand-block">
                <div class="brand-logo">AG</div>
                <div>
                    <h1>CRM Agro</h1>
                    <p>Gestión comercial agroinsumos</p>
                </div>
            </div>

            <?php if ($msg = flash('success')): ?>
                <div class="alert success"><?= e($msg) ?></div>
            <?php endif; ?>
            <?php if ($msg = flash('error')): ?>
                <div class="alert error"><?= e($msg) ?></div>
            <?php endif; ?>

            <?= $content ?>
        </section>
    </main>
</body>
</html>
