/* Extrait de layouts/auth_base.html — Audit 12/06/2026 (pipeline statique).
   Contenu identique au bloc <style> inline d'origine. */

:root {
    --bg-body: #f8fafc;
    --text-body: #18181b;
    --bg-card: rgba(255, 255, 255, 0.6);
    --border-card: rgba(0, 0, 0, 0.1);
    --text-muted: rgba(0, 0, 0, 0.5);
}

.dark {
    --bg-body: #000000;
    --text-body: #ffffff;
    --bg-card: rgba(255, 255, 255, 0.05);
    --border-card: rgba(255, 255, 255, 0.1);
    --text-muted: rgba(255, 255, 255, 0.4);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg-body);
    color: var(--text-body);
    transition: background 0.3s, color 0.3s;
}

.input-field {
    width: 100%;
    height: 3rem;
    padding-left: 2.75rem;
    padding-right: 1rem;
    border-radius: 0.75rem;
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    color: var(--text-body);
    font-size: 0.875rem;
    outline: none;
    transition: all 0.2s;
}

.input-field::placeholder {
    color: var(--text-muted);
}

.input-field:focus {
    box-shadow: 0 0 0 2px rgba(168, 85, 247, 0.4);
}
