@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


:root {
    --bg: #000;
    --panel: #0c0c0c;
    --panel-soft: #0f0f0f;
    --text: #fff;
    --muted: #7d7d7d;
    --border: #2e2e2e;
    --border-soft: #323232;
    --accent: #6ea8fe;
}


.col-mid .pane {
    justify-content: center;
    align-items: center;
    display: flex;
    background: none;
    border: 0;
}


/* ===== Login (même style que side-menu) ===== */
.auth-card {
    min-width: 100%;
    margin: 18px auto;
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #0d0d0d;
}

.auth-title {
    margin: 0 0 14px;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .4px;
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: block;
    margin: 0 0 8px;
    font-size: .95rem;
    color: #dcdcdc;
}

.input-dark {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: #101010;
    color: #eaeaea;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.input-dark::placeholder {
    color: #7d7d7d;
}

.input-dark:focus {
    border-color: rgba(110, 168, 254, .35);
    box-shadow: inset 0 0 0 1px rgba(110, 168, 254, .22);
}

/* Bouton rail = clone du .side-menu a, utilisable sur <button> */
.btn-rail {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: transparent;
    color: #eaeaea;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .12s ease, box-shadow .2s ease, color .2s ease;
}

.btn-rail .ico {
    width: 22px;
    text-align: center;
    color: #bdbdbd;
    transition: color .2s ease, transform .2s ease;
}

.btn-rail .label {
    flex: 1;
}

.btn-rail .chev {
    opacity: 0;
    transform: translateX(-4px);
    color: #9a9a9a;
    transition: opacity .2s, transform .2s;
}

.btn-rail:hover {
    background: linear-gradient(180deg, #141414, #0f0f0f);
    border-color: #363636;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .03), 0 6px 18px rgba(0, 0, 0, .35);
    transform: translateX(2px);
    color: #fff;
}

.btn-rail:hover .ico {
    color: #fff;
    transform: scale(1.05);
}

.btn-rail:hover .chev {
    opacity: .9;
    transform: translateX(0);
}

.btn-rail.primary {
    background: linear-gradient(180deg, #171717, #101010);
    border-color: rgba(110, 168, 254, .35);
    box-shadow: inset 0 0 0 1px rgba(110, 168, 254, .22);
}

.btn-rail.loading {
    pointer-events: none;
    opacity: .7;
}

.auth-meta {
    margin-top: 10px;
    font-size: .95rem;
    color: #9a9a9a;
}

.auth-meta a {
    color: #cfe0ff;
    text-decoration: none;
}

.auth-meta a:hover {
    text-decoration: underline;
}

/* ===== Boutons œil – même style que sur compte ===== */
.input-row { display:flex; gap:8px; align-items:center; }
.input-row .input-dark { flex:1; height:42px; }

.pe-btn.eye{
  width:46px; height:42px;
  display:inline-flex; align-items:center; justify-content:center;
  padding:0;
  border-radius:10px;
  border:1px solid #2a2b2f !important;
  background:#191a1e !important;
  color:#fff !important;
}
.pe-btn.eye i { font-size:14px; opacity:.95; }
