/*
 * Portail adhérent — Les Patriotes 64
 * Mobile-first, responsive
 */

/* =========================================================================
   Variables
   ========================================================================= */
:root {
    --lp-orange:    #F7941D;
    --lp-orange-dk: #e07e0a;
    --lp-bleu:      #1B3A6B;
    --lp-bleu-lt:   #2a4f8e;
    --lp-bordeaux:  #8B1A1A;
    --lp-blanc:     #FFFFFF;
    --lp-gris:      #F5F5F5;
    --lp-gris-md:   #E0E0E0;
    --lp-gris-dk:   #9E9E9E;
    --lp-texte:     #212121;
    --lp-texte-sec: #616161;

    /* États */
    --lp-green:     #2E7D32;
    --lp-green-lt:  #E8F5E9;
    --lp-red:       #C62828;
    --lp-red-lt:    #FFEBEE;
    --lp-amber:     #F57F17;
    --lp-amber-lt:  #FFFDE7;

    /* Layout */
    --lp-radius:    8px;
    --lp-radius-lg: 12px;
    --lp-shadow:    0 2px 12px rgba(27, 58, 107, 0.10);
    --lp-shadow-md: 0 4px 20px rgba(27, 58, 107, 0.14);

    /* Typography */
    --lp-font-sans:  'Open Sans', system-ui, -apple-system, sans-serif;
    --lp-font-head:  'Montserrat', var(--lp-font-sans);

    /* Nav bottom */
    --lp-nav-h:     64px;
}

/* =========================================================================
   Reset & Base
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 16px; -webkit-text-size-adjust: 100%; }

body.lp-portal-body {
    margin: 0;
    font-family: var(--lp-font-sans);
    color: var(--lp-texte);
    background: var(--lp-gris);
    line-height: 1.6;
}

a { color: var(--lp-bleu); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; }

h1, h2, h3, h4 {
    font-family: var(--lp-font-head);
    line-height: 1.3;
    margin: 0 0 0.5rem;
}

p { margin: 0 0 0.75rem; }
p:last-child { margin-bottom: 0; }

/* =========================================================================
   Layout
   ========================================================================= */
.lp-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 1rem;
}

.lp-main {
    padding-top: 0.5rem;
    padding-bottom: 2rem;
    min-height: calc(100vh - 56px - var(--lp-nav-h));
}

/* =========================================================================
   Header — identité visuelle Les Patriotes 64 (bandeau orange + navy)
   ========================================================================= */
.lp-header {
    background: var(--lp-bleu);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    border-top: 4px solid var(--lp-orange);
}

.lp-header-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.lp-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.lp-logo-text {
    font-family: var(--lp-font-head);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--lp-blanc);
    white-space: nowrap;
}

.lp-header-title {
    flex: 1;
    font-family: var(--lp-font-head);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.75);
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.lp-header-logout {
    flex-shrink: 0;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    padding: 0.25rem;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
}

.lp-header-logout:hover {
    color: var(--lp-orange);
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

/* =========================================================================
   Footer
   ========================================================================= */
.lp-footer {
    background: var(--lp-bleu);
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding: 0.75rem;
    font-size: 0.75rem;
}

.lp-footer p { margin: 0; }

/* =========================================================================
   Navigation mobile (barre fixe en bas)
   ========================================================================= */
.lp-nav-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: var(--lp-nav-h);
    background: var(--lp-bleu);
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    z-index: 200;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.lp-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    color: rgba(255,255,255,0.55);
    padding: 0.4rem 0.25rem;
    transition: color 0.2s, background 0.2s;
    text-decoration: none;
    border-top: 3px solid transparent;
    font-size: 0;
}

.lp-nav-item:hover {
    color: var(--lp-orange);
    text-decoration: none;
}

.lp-nav-item--active {
    color: var(--lp-orange);
    border-top-color: var(--lp-orange);
    background: rgba(247,148,29,0.08);
}

.lp-nav-icon { display: block; }

.lp-nav-label {
    font-size: 0.6rem;
    font-family: var(--lp-font-head);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* =========================================================================
   Cards
   ========================================================================= */
.lp-card {
    background: var(--lp-blanc);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.lp-card-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--lp-texte);
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.15s;
}

.lp-card-link:hover {
    box-shadow: var(--lp-shadow-md);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--lp-texte);
}

.lp-card-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: rgba(247,148,29,0.12);
    border: 1px solid rgba(247,148,29,0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-card-body { flex: 1; min-width: 0; }

.lp-card-title {
    font-family: var(--lp-font-head);
    font-size: 1rem;
    font-weight: 600;
    color: var(--lp-bleu);
    margin: 0 0 0.15rem;
}

.lp-card-text {
    font-size: 0.875rem;
    color: var(--lp-texte-sec);
    margin: 0;
}

.lp-card-arrow {
    color: var(--lp-gris-dk);
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* =========================================================================
   Dashboard grid
   ========================================================================= */
.lp-welcome {
    padding: 1rem 0 0.5rem;
    border-left: 4px solid var(--lp-orange);
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.lp-welcome-title {
    font-size: 1.5rem;
    color: var(--lp-bleu);
    margin: 0 0 0.25rem;
}

.lp-welcome-sub {
    font-size: 0.9rem;
    color: var(--lp-texte-sec);
    margin: 0 0 1rem;
}

.lp-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 480px) {
    .lp-dashboard-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =========================================================================
   Sections
   ========================================================================= */
.lp-section { margin-bottom: 1.5rem; }

.lp-section-title {
    font-family: var(--lp-font-head);
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-bleu);
    margin: 0 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--lp-gris-md);
}

.lp-section-more {
    text-align: center;
    margin-top: 1rem;
}

/* =========================================================================
   Page header / navigation interne
   ========================================================================= */
.lp-page-header {
    padding: 0.75rem 0;
}

.lp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: var(--lp-bleu);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.lp-back-link:hover { text-decoration: underline; }

.lp-page-title {
    font-size: 1.4rem;
    color: var(--lp-bleu);
    margin: 0.25rem 0 0;
}

/* =========================================================================
   Boutons
   ========================================================================= */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.2rem;
    border-radius: 6px;
    font-family: var(--lp-font-head);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
    text-decoration: none;
    white-space: nowrap;
}

.lp-btn:active { transform: scale(0.97); }

.lp-btn-primary {
    background: var(--lp-orange);
    color: var(--lp-blanc);
    border-color: var(--lp-orange);
}

.lp-btn-primary:hover {
    background: var(--lp-orange-dk);
    border-color: var(--lp-orange-dk);
    color: var(--lp-blanc);
    text-decoration: none;
}

.lp-btn-secondary {
    background: transparent;
    color: var(--lp-bleu);
    border-color: var(--lp-bleu);
}

.lp-btn-secondary:hover {
    background: var(--lp-bleu);
    color: var(--lp-blanc);
    text-decoration: none;
}

.lp-btn-inscrit {
    background: var(--lp-green);
    color: var(--lp-blanc);
    border-color: var(--lp-green);
}

.lp-btn-inscrit:hover {
    background: #1B5E20;
    border-color: #1B5E20;
    color: var(--lp-blanc);
    text-decoration: none;
}

.lp-btn-sm  { padding: 0.4rem 0.85rem; font-size: 0.8rem; }
.lp-btn-lg  { padding: 0.85rem 1.75rem; font-size: 1rem; width: 100%; justify-content: center; }

/* =========================================================================
   Badges
   ========================================================================= */
.lp-badge {
    display: inline-block;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--lp-font-head);
    letter-spacing: 0.02em;
    vertical-align: middle;
}

.lp-badge-actif    { background: var(--lp-green);   color: var(--lp-blanc); }
.lp-badge-inactif  { background: #757575;            color: var(--lp-blanc); }
.lp-badge-suspendu { background: var(--lp-red);      color: var(--lp-blanc); }

/* Badges type action */
.lp-badge-type              { color: var(--lp-blanc); }
.lp-badge-type-tractage     { background: #1565C0; }
.lp-badge-type-collage      { background: #6A1B9A; }
.lp-badge-type-reunion      { background: var(--lp-bleu); }
.lp-badge-type-manifestation{ background: var(--lp-bordeaux); }
.lp-badge-type-formation    { background: #00695C; }
.lp-badge-type-autre        { background: #546E7A; }

/* =========================================================================
   Status cotisation
   ========================================================================= */
.lp-status-paid   { color: var(--lp-green); font-weight: 700; }
.lp-status-unpaid { color: var(--lp-red);   font-weight: 700; }

.lp-status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-family: var(--lp-font-head);
    font-size: 0.9rem;
}

.lp-status-badge-paid   { background: var(--lp-green-lt); color: var(--lp-green); }
.lp-status-badge-unpaid { background: var(--lp-red-lt);   color: var(--lp-red); }

/* =========================================================================
   Alertes
   ========================================================================= */
.lp-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.85rem 1rem;
    border-radius: var(--lp-radius);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.lp-alert-warning {
    background: var(--lp-amber-lt);
    border-left: 4px solid var(--lp-amber);
    color: #5D4037;
}

.lp-alert-info {
    background: #E3F2FD;
    border-left: 4px solid #1565C0;
    color: #1565C0;
}

.lp-alert-error {
    background: var(--lp-red-lt);
    border-left: 4px solid var(--lp-red);
    color: var(--lp-red);
}

/* =========================================================================
   Onglets filtre
   ========================================================================= */
.lp-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--lp-gris-md);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lp-tabs::-webkit-scrollbar { display: none; }

.lp-tab {
    flex-shrink: 0;
    padding: 0.6rem 1.1rem;
    font-family: var(--lp-font-head);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-texte-sec);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    text-decoration: none;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.lp-tab:hover {
    color: var(--lp-bleu);
    text-decoration: none;
}

.lp-tab--active {
    color: var(--lp-orange);
    border-bottom-color: var(--lp-orange);
}

/* =========================================================================
   Action cards
   ========================================================================= */
.lp-actions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-action-card {
    border-left: 4px solid var(--lp-gris-md);
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lp-action-card--tractage     { border-left-color: #1565C0; }
.lp-action-card--collage      { border-left-color: #6A1B9A; }
.lp-action-card--reunion      { border-left-color: var(--lp-bleu); }
.lp-action-card--manifestation{ border-left-color: var(--lp-bordeaux); }
.lp-action-card--formation    { border-left-color: #00695C; }
.lp-action-card--autre        { border-left-color: #546E7A; }

.lp-action-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1rem 0.5rem;
    text-decoration: none;
    color: var(--lp-texte);
    flex: 1;
}

.lp-action-card-inner:hover {
    text-decoration: none;
    color: var(--lp-texte);
}

.lp-action-date-badge {
    flex-shrink: 0;
    width: 48px;
    text-align: center;
    background: rgba(27,58,107,0.07);
    border-radius: 6px;
    padding: 0.3rem 0.2rem;
}

.lp-action-date-badge--sm {
    width: 42px;
    padding: 0.2rem;
}

.lp-action-day {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--lp-font-head);
    color: var(--lp-bleu);
    line-height: 1.1;
}

.lp-action-month {
    display: block;
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--lp-texte-sec);
    letter-spacing: 0.04em;
}

.lp-action-card-header {
    display: flex;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 0.3rem;
}

.lp-action-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-texte);
    margin: 0 0 0.35rem;
    line-height: 1.3;
}

.lp-action-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0;
}

.lp-action-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--lp-texte-sec);
}

.lp-action-lieu {
    font-size: 0.8rem;
    color: var(--lp-texte-sec);
    margin: 0.2rem 0 0;
}

.lp-action-card-footer {
    padding: 0.5rem 1rem 0.75rem;
    display: flex;
    justify-content: flex-end;
}

/* =========================================================================
   Action detail
   ========================================================================= */
.lp-action-detail-card { padding: 0; overflow: hidden; }

.lp-action-detail-header {
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid var(--lp-gris-md);
}

.lp-action-detail-title {
    font-size: 1.25rem;
    color: var(--lp-bleu);
    margin: 0.5rem 0 0;
}

.lp-action-description {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--lp-gris-md);
    font-size: 0.9rem;
    color: var(--lp-texte);
    line-height: 1.7;
}

.lp-detail-section {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--lp-gris-md);
}

.lp-detail-section:last-of-type { border-bottom: none; }

.lp-detail-section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--lp-texte-sec);
    margin: 0 0 0.6rem;
}

.lp-detail-content { font-size: 0.9rem; }
.lp-detail-content p { margin-bottom: 0.4rem; }

.lp-point-rdv {
    padding: 0.5rem 0.75rem;
    background: rgba(247,148,29,0.08);
    border-left: 3px solid var(--lp-orange);
    border-radius: 0 4px 4px 0;
    font-size: 0.875rem;
}

.lp-btn-maps { margin-top: 0.5rem; }

.lp-action-detail-cta {
    padding: 1.25rem;
    border-top: 1px solid var(--lp-gris-md);
}

/* =========================================================================
   Profile
   ========================================================================= */
.lp-card-profile { padding: 1.5rem; }

.lp-profile-avatar {
    width: 72px;
    height: 72px;
    background: rgba(27,58,107,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.lp-profile-dl { margin: 0; }

.lp-profile-section-title {
    font-family: var(--lp-font-head);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--lp-texte-sec);
    padding: 0.75rem 0 0.35rem;
    border-bottom: 1px solid var(--lp-gris-md);
    margin-bottom: 0.5rem;
}

.lp-profile-row {
    display: flex;
    padding: 0.45rem 0;
    border-bottom: 1px solid var(--lp-gris);
    gap: 0.75rem;
}

.lp-profile-row:last-child { border-bottom: none; }

.lp-profile-label {
    flex: 0 0 140px;
    font-size: 0.8rem;
    color: var(--lp-texte-sec);
    font-weight: 600;
    padding-top: 0.1rem;
}

.lp-profile-value {
    flex: 1;
    font-size: 0.9rem;
    color: var(--lp-texte);
    margin: 0;
    word-break: break-word;
}

.lp-field-empty { color: var(--lp-gris-dk); font-style: italic; }

/* =========================================================================
   Cotisation
   ========================================================================= */
.lp-cotisation-card { text-align: center; padding: 2rem 1.5rem; }

.lp-cotisation-year {
    font-family: var(--lp-font-head);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-bleu);
    line-height: 1;
    margin-bottom: 1rem;
}

.lp-cotisation-status { margin-bottom: 1.25rem; }

.lp-cotisation-details {
    text-align: left;
    border-top: 1px solid var(--lp-gris-md);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.lp-cotisation-detail-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--lp-gris);
    font-size: 0.9rem;
}

.lp-cotisation-detail-label { color: var(--lp-texte-sec); }
.lp-cotisation-detail-value { font-weight: 600; color: var(--lp-texte); }

.lp-cotisation-info-alert { margin-top: 1.25rem; text-align: left; }
.lp-cotisation-note { font-size: 0.875rem; color: var(--lp-texte-sec); }

.lp-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.lp-table th {
    background: var(--lp-bleu);
    color: var(--lp-blanc);
    padding: 0.5rem 0.75rem;
    text-align: left;
    font-family: var(--lp-font-head);
    font-size: 0.8rem;
}
.lp-table td { padding: 0.5rem 0.75rem; border-bottom: 1px solid var(--lp-gris-md); }
.lp-table tr:last-child td { border-bottom: none; }
.lp-table tr:nth-child(even) { background: var(--lp-gris); }

/* =========================================================================
   Circo / Canton
   ========================================================================= */
.lp-circo-card, .lp-canton-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
}

.lp-circo-badge, .lp-canton-badge {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--lp-bleu);
    color: var(--lp-blanc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font-head);
    font-weight: 700;
    font-size: 1.1rem;
}

.lp-circo-name, .lp-canton-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-bleu);
    margin: 0 0 0.3rem;
}

.lp-circo-meta, .lp-canton-meta {
    font-size: 0.85rem;
    color: var(--lp-texte-sec);
    margin: 0 0 0.3rem;
}

.lp-circo-description { font-size: 0.875rem; margin-top: 0.5rem; }

/* =========================================================================
   Prochaine action (dashboard)
   ========================================================================= */
.lp-section-action { margin-top: 0.5rem; }

.lp-card-prochaine-action {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
}

.lp-card-prochaine-action .lp-action-date-badge {
    width: 56px;
    padding: 0.4rem 0.25rem;
}

.lp-card-prochaine-action .lp-action-day  { font-size: 1.5rem; }
.lp-card-prochaine-action .lp-action-month{ font-size: 0.7rem; }

.lp-card-prochaine-action .lp-action-title {
    font-size: 1rem;
    margin: 0.2rem 0 0.3rem;
}

.lp-action-meta { font-size: 0.8rem; color: var(--lp-texte-sec); margin: 0.2rem 0 0; }

/* =========================================================================
   Empty state
   ========================================================================= */
.lp-empty-state {
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--lp-texte-sec);
}

.lp-empty-state svg { margin-bottom: 0.75rem; }
.lp-empty-state p   { font-size: 0.9rem; margin: 0; }

/* =========================================================================
   Toast notifications (JS)
   ========================================================================= */
.lp-toast-container {
    position: fixed;
    bottom: calc(var(--lp-nav-h) + 12px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 300;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    pointer-events: none;
    width: min(360px, 90vw);
}

.lp-toast {
    pointer-events: auto;
    background: var(--lp-bleu);
    color: var(--lp-blanc);
    padding: 0.7rem 1.1rem;
    border-radius: var(--lp-radius);
    font-size: 0.875rem;
    box-shadow: var(--lp-shadow-md);
    opacity: 0;
    transform: translateY(12px);
    animation: lpToastIn 0.25s ease forwards, lpToastOut 0.3s ease 2.7s forwards;
    max-width: 100%;
    text-align: center;
}

.lp-toast--success { background: var(--lp-green); }
.lp-toast--error   { background: var(--lp-red); }

@keyframes lpToastIn {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes lpToastOut {
    to { opacity: 0; transform: translateY(8px); }
}

/* =========================================================================
   Formulaire login (utilisé dans login.php standalone)
   ========================================================================= */
.lp-form-group { margin-bottom: 1.25rem; }

.lp-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lp-bleu);
    margin-bottom: 0.4rem;
}

.lp-form-group input[type="text"],
.lp-form-group input[type="email"],
.lp-form-group input[type="password"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1.5px solid var(--lp-gris-md);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--lp-font-sans);
    color: var(--lp-texte);
    transition: border-color 0.2s;
}

.lp-form-group input:focus {
    outline: none;
    border-color: var(--lp-bleu);
    box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}

/* =========================================================================
   Responsive — tablette et plus
   ========================================================================= */
@media (min-width: 600px) {

    .lp-container { padding: 1.5rem; }

    .lp-welcome-title { font-size: 1.8rem; }

    .lp-profile-label { flex-basis: 180px; }

    .lp-nav-label { font-size: 0.65rem; }

    .lp-action-card-footer { padding-bottom: 1rem; }
}

@media (min-width: 700px) {
    .lp-nav-bottom { display: none; }
    .lp-main { min-height: auto; padding-bottom: 3rem; }
}
