:root {
    --gallimea-primary:   #1e40af;
    --gallimea-secondary: #64748b;
}

.gpo-wrap { max-width: 700px; margin: 0 auto; padding: 20px 0; }

/* Carte */
.gpo-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 24px;
    margin-bottom: 20px;
}

.gpo-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--gallimea-primary);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f1;
}

/* Logo */
.gpo-logo { text-align: center; margin-bottom: 16px; }
.gpo-logo img { max-height: 60px; width: auto; }

/* Titre */
.gpo-title { font-size: 20px; font-weight: 700; color: #1d2327; margin: 0 0 20px; }

/* Formulaire */
.gpo-login-wrap { max-width: 420px; }
.gpo-login-wrap .gpo-card { padding: 32px; }

.gpo-field { margin-bottom: 16px; }
.gpo-field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 6px; color: #374151; }
.gpo-field input[type="text"],
.gpo-field input[type="password"],
.gpo-field input[type="email"] {
    width: 100%;
    padding: 9px 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color .15s;
}
.gpo-field input:focus { border-color: var(--gallimea-primary); outline: none; }

.gpo-field--inline { display: flex; justify-content: space-between; align-items: center; }

/* Boutons */
.gpo-btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--gallimea-primary);
    color: #fff !important;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: opacity .15s;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}
.gpo-btn:hover { opacity: .85; }
.gpo-btn--outline {
    background: transparent;
    color: var(--gallimea-primary) !important;
    border: 1px solid var(--gallimea-primary);
    width: auto;
}

/* Lien */
.gpo-link { font-size: 13px; color: var(--gallimea-secondary); text-decoration: none; }
.gpo-link:hover { text-decoration: underline; }

/* Erreur */
.gpo-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Profil header */
.gpo-profil-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.gpo-profil-header .gpo-title { margin: 0; }

/* Grille infos */
.gpo-info-grid { display: flex; flex-direction: column; gap: 0; }
.gpo-info-row {
    display: flex;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f1;
}
.gpo-info-row:last-child { border-bottom: none; }
.gpo-info-label { min-width: 140px; font-size: 13px; color: var(--gallimea-secondary); padding-top: 1px; }
.gpo-info-value { flex: 1; font-size: 14px; color: #1d2327; }
