/* ===== LevelUp — Page de connexion ===== */
.mp-login-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d0d14;
    padding: 20px;
}
.mp-login-card {
    background: #13131f;
    border: 1px solid #252540;
    border-radius: 18px;
    padding: 40px 36px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 40px rgba(124,58,237,.1);
}
.mp-login-logo {
    font-size: 52px;
    margin-bottom: 10px;
    filter: drop-shadow(0 0 12px rgba(167,139,250,.6));
}
.mp-login-title {
    font-size: 28px;
    font-weight: 900;
    color: #a78bfa;
    letter-spacing: -1px;
    margin-bottom: 6px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}
.mp-login-sub {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 28px;
    font-family: 'Segoe UI', system-ui, sans-serif;
}
.mp-login-error {
    background: rgba(248,113,113,.12);
    border: 1px solid rgba(248,113,113,.4);
    color: #f87171;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 18px;
    text-align: left;
    font-family: 'Segoe UI', system-ui, sans-serif;
}
.mp-login-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.mp-login-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}
.mp-login-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #64748b;
    font-family: 'Segoe UI', system-ui, sans-serif;
}
.mp-login-field input {
    background: #0d0d14;
    border: 1px solid #252540;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    color: #e2e8f0;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    font-family: 'Segoe UI', system-ui, sans-serif;
    width: 100%;
    box-sizing: border-box;
}
.mp-login-field input:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124,58,237,.2);
}
.mp-login-field input::placeholder { color: #334155; }
.mp-login-btn {
    margin-top: 8px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    letter-spacing: .3px;
    transition: opacity .2s, transform .1s;
    box-shadow: 0 4px 20px rgba(124,58,237,.4);
    font-family: 'Segoe UI', system-ui, sans-serif;
}
.mp-login-btn:hover  { opacity: .9; transform: translateY(-1px); }
.mp-login-btn:active { transform: translateY(0) scale(.98); }
