/* =========================================================
           VARIABLES
========================================================= */

:root {

    --primary: #3659e3;
    --primary-dark: #2746bc;
    --primary-light: #eef2ff;

    --purple: #7856ff;
    --green: #12a574;
    --orange: #f08c32;
    --red: #dc4c64;

    --text: #172033;
    --text-soft: #697386;
    --text-light: #919bad;

    --border: #e6e9ef;
    --white: #ffffff;
    --background: #f5f7fb;

    --sidebar-width: 275px;

    --radius: 18px;

    --shadow:
        0 3px 10px rgba(23, 32, 51, .03),
        0 15px 40px rgba(23, 32, 51, .06);

}


/* =========================================================
    RESET
========================================================= */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    margin: 0;

    min-height: 100vh;

    background: var(--background);

    color: var(--text);

    font-family: "DM Sans", sans-serif;

}

body,
input,
button {
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font-size: inherit;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================================================
    AUTHENTIFICATION
========================================================= */

.auth-page {

    width: 100%;
    min-height: 100vh;

    display: grid;

    grid-template-columns:
        minmax(450px, 48%)
        minmax(0, 1fr);

}


/* =========================================================
    AUTH - PARTIE VISUELLE
========================================================= */

.auth-visual {

    min-height: 100vh;
    padding: 55px 65px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background:
        linear-gradient(
            145deg,
            rgba(22, 35, 80, .15),
            rgba(18, 28, 66, .92)
        ),
        url("../assets/images/photo-1449965408869-eaa3f722e40d.jfif");

    background-position: center;
    background-size: cover;
}


.auth-visual::after {

    content: "";

    position: absolute;

    right: -130px;
    bottom: -180px;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.12);

}


.auth-visual::before {

    content: "";

    position: absolute;

    right: -40px;
    bottom: -90px;

    width: 260px;
    height: 260px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.10);

}


.auth-brand {

    position: relative;
    z-index: 2;

    display: flex;
    align-items: center;

    gap: 14px;

    font-family: "Manrope", sans-serif;

    font-size: 21px;
    font-weight: 800;

}


.brand-logo {

    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex: none;

    border-radius: 14px;

    background: rgba(255,255,255,.14);

    backdrop-filter: blur(15px);

    border: 1px solid rgba(255,255,255,.18);

}


.auth-presentation {

    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 600px;

    margin-bottom: 50px;

}


.auth-badge {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 13px;

    margin-bottom: 22px;

    border-radius: 50px;

    border: 1px solid rgba(255,255,255,.17);

    background: rgba(255,255,255,.10);

    backdrop-filter: blur(12px);

    font-size: 13px;
    font-weight: 600;

}


.auth-presentation h1 {

    margin: 0 0 24px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(38px, 4vw, 62px);

    line-height: 1.06;

    letter-spacing: -2.5px;

}


.auth-presentation p {

    max-width: 520px;

    margin: 0;

    color: rgba(255,255,255,.78);

    font-size: 17px;

    line-height: 1.7;

}


/* =========================================================
    AUTH - FORMULAIRE
========================================================= */

.auth-form-side {

    min-width: 0;
    min-height: 100vh;

    padding: 50px;

    background: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

}


.auth-container {

    width: 100%;
    max-width: 465px;

}


.auth-form {
    display: none;
}


/* Connexion affichée par défaut */

#login {
    display: block;
}


/* Inscription */

#register:target {
    display: block;
}


#register:target ~ #login {
    display: none;
}


.auth-title {
    margin-bottom: 38px;
}


.auth-title .small-label {

    margin-bottom: 10px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;

}


.auth-title h2 {

    margin: 0 0 10px;

    font-family: "Manrope", sans-serif;

    font-size: 34px;

    letter-spacing: -1.2px;

}


.auth-title p {

    margin: 0;

    color: var(--text-soft);

    line-height: 1.6;

}


/* =========================================================
    FORMULAIRES
========================================================= */

.form-group {
    margin-bottom: 20px;
}


.form-group label {

    display: block;

    margin-bottom: 8px;

    font-size: 13px;
    font-weight: 700;

}


.input-wrapper {
    position: relative;
}


.input-wrapper i {

    position: absolute;

    top: 50%;
    left: 18px;

    transform: translateY(-50%);

    color: #a0a9b8;

    pointer-events: none;

}


.form-control {

    width: 100%;
    height: 56px;

    padding: 0 18px 0 49px;

    border: 1px solid #dfe3eb;

    border-radius: 13px;

    outline: none;

    background: #ffffff;

    color: var(--text);

    transition:
        border-color .2s,
        box-shadow .2s;

}


.form-control:focus {

    border-color: var(--primary);

    box-shadow:
        0 0 0 4px rgba(54,89,227,.08);

}


.form-control::placeholder {
    color: #a9b1bf;
}


.form-row {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 14px;

}


.form-options {

    margin: 8px 0 25px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    font-size: 13px;

}


.remember {

    display: flex;

    align-items: center;

    gap: 8px;

    color: var(--text-soft);

    cursor: pointer;

}


.forgot {

    color: var(--primary);

    font-weight: 600;

}


/* =========================================================
    BOUTON
========================================================= */

.btn-primary {

    width: 100%;
    height: 57px;

    border: 0;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            #3b61eb,
            #304fd0
        );

    color: #ffffff;

    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 9px 25px rgba(54, 89, 227, .22);

    transition:
        transform .2s,
        box-shadow .2s;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

}


.btn-primary:hover {

    transform: translateY(-1px);

    box-shadow:
        0 13px 30px rgba(54,89,227,.28);

}


.switch-auth {

    margin-top: 27px;

    text-align: center;

    color: var(--text-soft);

    font-size: 14px;

}


.switch-auth a {

    color: var(--primary);

    font-weight: 700;

}


.security-line {

    margin-top: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 7px;

    color: #9ba4b3;

    font-size: 12px;

}


/* =========================================================
    AFFICHAGE DU DASHBOARD
========================================================= */

.customer-space {

    display: block;
    width: 100%;
    min-height: 100vh;

}


#dashboard:target {
    display: block;
}


/*
    * Le dashboard est placé avant .auth-page dans le HTML.
    * Lorsqu'il est ciblé, on masque donc la page de connexion.
    */

#dashboard:target ~ .auth-page {
    display: none;
}


/* =========================================================
    DASHBOARD - STRUCTURE
========================================================= */

.dashboard-layout {

    width: 100%;

    min-height: 100vh;

}


/* =========================================================
    SIDEBAR
========================================================= */

.sidebar {

    position: fixed;

    top: 0;
    left: 0;
    bottom: 0;

    width: var(--sidebar-width);
    height: 100vh;

    padding: 28px 20px;

    overflow-y: auto;

    background: #11192c;

    color: #ffffff;

    display: flex;
    flex-direction: column;

    z-index: 100;

}


.sidebar-brand {

    padding: 4px 12px 28px;

    display: flex;
    align-items: center;

    gap: 13px;

    font-family: "Manrope", sans-serif;

    font-size: 18px;
    font-weight: 800;

}


.sidebar-brand-icon {

    width: 40px;
    height: 40px;

    flex: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #5272f3,
            #7555ff
        );

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow:
        0 8px 20px rgba(82,114,243,.25);

}


.nav-title {

    padding: 18px 14px 9px;

    color: #63708b;

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 1.4px;

    text-transform: uppercase;

}


.sidebar-nav {

    display: flex;
    flex-direction: column;

    gap: 5px;

}


.sidebar-nav a {

    position: relative;

    width: 100%;
    min-height: 48px;

    padding: 0 14px;

    border-radius: 11px;

    color: #98a5bd;

    display: flex;
    align-items: center;

    gap: 13px;

    font-size: 14px;

    transition:
        background .2s,
        color .2s;

}


.sidebar-nav a:hover,
.sidebar-nav a.active {

    color: #ffffff;

    background: rgba(255,255,255,.07);

}


.sidebar-nav a.active::before {

    content: "";

    position: absolute;

    top: 50%;
    left: 0;

    width: 3px;
    height: 20px;

    transform: translateY(-50%);

    border-radius: 0 4px 4px 0;

    background: #607dff;

}


.sidebar-nav i {

    width: 20px;

    flex: none;

    text-align: center;

}


.sidebar-bottom {

    margin-top: auto;

    padding-top: 18px;

    border-top: 1px solid rgba(255,255,255,.07);

}


.support-card {

    padding: 17px;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 14px;

    background: rgba(255,255,255,.05);

}


.support-card strong {

    display: block;

    margin-bottom: 6px;

    font-size: 13px;

}


.support-card span {

    display: block;

    color: #8894ab;

    font-size: 11px;

    line-height: 1.5;

}


.support-card a {

    display: inline-flex;

    margin-top: 12px;

    color: #8399ff;

    font-size: 12px;
    font-weight: 700;

}


/* =========================================================
    DASHBOARD - MAIN
========================================================= */

.dashboard-main {

    width: calc(100% - var(--sidebar-width));

    min-width: 0;
    min-height: 100vh;

    margin-left: var(--sidebar-width);

    background: var(--background);

}


/* =========================================================
    TOPBAR
========================================================= */

.topbar {

    position: sticky;

    top: 0;

    z-index: 50;

    width: 100%;
    height: 82px;

    padding: 0 38px;

    border-bottom: 1px solid var(--border);

    background: rgba(255,255,255,.96);

    backdrop-filter: blur(18px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

}


.topbar-title {

    min-width: 0;

}


.topbar-title strong {

    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 17px;

    white-space: nowrap;

}


.topbar-title span {

    display: block;

    margin-top: 2px;

    color: var(--text-light);

    font-size: 11px;

}


.topbar-actions {

    display: flex;
    align-items: center;

    gap: 14px;

    flex: none;

}


.top-icon {

    position: relative;

    width: 42px;
    height: 42px;

    flex: none;

    border: 1px solid var(--border);

    border-radius: 12px;

    background: #ffffff;

    color: #697386;

    display: flex;
    align-items: center;
    justify-content: center;

}


.notification-dot {

    position: absolute;

    top: 8px;
    right: 8px;

    width: 7px;
    height: 7px;

    border: 2px solid #ffffff;

    border-radius: 50%;

    background: #ff476b;

}


.user-small {

    display: flex;
    align-items: center;

    gap: 10px;

}


.user-small-avatar {

    width: 42px;
    height: 42px;

    flex: none;

    border-radius: 12px;

    background:
        linear-gradient(
            135deg,
            #3c5fe2,
            #7d5cff
        );

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 800;

}


.user-small-info strong {

    display: block;

    font-size: 12px;

}


.user-small-info span {

    display: block;

    margin-top: 2px;

    color: var(--text-light);

    font-size: 10px;

}


/* =========================================================
    DASHBOARD - CONTENU
========================================================= */

.dashboard-content {

    width: 100%;
    max-width: 1500px;

    margin: 0 auto;

    padding: 38px;

}


/* =========================================================
    BIENVENUE
========================================================= */

.welcome {

    width: 100%;

    margin-bottom: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

}


.welcome-main {

    min-width: 0;

}


.welcome-label {

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.2px;

    text-transform: uppercase;

}


.welcome h1 {

    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 32px;

    line-height: 1.2;

    letter-spacing: -1.2px;

}


.welcome p {

    margin: 8px 0 0;

    color: var(--text-soft);

    font-size: 14px;

    line-height: 1.6;

}


.member-status {

    flex: none;

    padding: 10px 14px;

    border-radius: 11px;

    background: #edf8f4;

    color: #11805c;

    display: flex;
    align-items: center;

    gap: 9px;

    font-size: 12px;
    font-weight: 700;

}


/* =========================================================
    STATS
========================================================= */

.stats-grid {

    width: 100%;

    margin-bottom: 25px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 18px;

}


.stat-card {

    min-width: 0;

    padding: 22px;

    border: 1px solid var(--border);

    border-radius: 16px;

    background: #ffffff;

    box-shadow:
        0 4px 12px rgba(22,32,51,.025);

}


.stat-top {

    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 10px;

}


.stat-title {

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 600;

}


.stat-icon {

    width: 37px;
    height: 37px;

    flex: none;

    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;

}


.stat-icon.blue {

    color: #3659e3;

    background: #eef2ff;

}


.stat-icon.green {

    color: #15946e;

    background: #eaf8f3;

}


.stat-icon.orange {

    color: #d57a29;

    background: #fff4e8;

}


.stat-icon.purple {

    color: #7653dd;

    background: #f3edff;

}


.stat-number {

    font-family: "Manrope", sans-serif;

    font-size: 27px;
    font-weight: 800;

    letter-spacing: -1px;

}


.stat-desc {

    margin-top: 4px;

    color: var(--text-light);

    font-size: 10px;

}


/* =========================================================
    GRILLE PRINCIPALE
========================================================= */

.main-grid {

    width: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1.7fr)
        minmax(330px, .8fr);

    align-items: start;

    gap: 24px;

}


.main-grid > div {
    min-width: 0;
}


/* =========================================================
    CARD
========================================================= */

.card {

    width: 100%;

    overflow: hidden;

    border: 1px solid var(--border);

    border-radius: var(--radius);

    background: #ffffff;

    box-shadow:
        0 5px 18px rgba(26,36,55,.03);

}


.card + .card {
    margin-top: 24px;
}


.card-header {

    min-height: 67px;

    padding: 0 24px;

    border-bottom: 1px solid #edf0f4;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

}


.card-header h3 {

    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

}


.card-header a {

    flex: none;

    color: var(--primary);

    font-size: 11px;
    font-weight: 700;

}


.card-body {
    padding: 24px;
}


/* =========================================================
    PROCHAINE RESERVATION
========================================================= */

.reservation-item {

    width: 100%;

    display: grid;

    grid-template-columns:
        145px
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 20px;

}


.car-image {

    width: 145px;
    height: 95px;

    overflow: hidden;

    border-radius: 13px;

    background: #f3f5f8;

}


.car-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

}


.reservation-info {

    min-width: 0;

}


.reservation-status {

    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-bottom: 7px;

    padding: 5px 9px;

    border-radius: 6px;

    background: #eaf8f3;

    color: #0f8a62;

    font-size: 9px;
    font-weight: 800;

    text-transform: uppercase;

    letter-spacing: .4px;

}


.reservation-info h4 {

    margin: 0 0 7px;

    font-family: "Manrope", sans-serif;

    font-size: 16px;

}


.reservation-info p {

    margin: 0;

    color: var(--text-soft);

    font-size: 11px;

    line-height: 1.6;

}


.reservation-info p + p {
    margin-top: 4px;
}


.reservation-info p i {

    width: 16px;

    margin-right: 4px;

    text-align: center;

    color: #8490a5;

}


.reservation-price {

    flex: none;

    min-width: 90px;

    text-align: right;

}


.reservation-price strong {

    display: block;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

}


.reservation-price span {

    color: var(--text-light);

    font-size: 9px;

}


/* =========================================================
    ACTIONS RAPIDES
========================================================= */

.quick-actions {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

}


.quick-action {

    min-width: 0;
    min-height: 110px;

    padding: 16px;

    border: 1px solid var(--border);

    border-radius: 13px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    gap: 20px;

    transition:
        border-color .2s,
        box-shadow .2s,
        transform .2s;

}


.quick-action:hover {

    border-color: #ccd5ff;

    box-shadow:
        0 8px 20px rgba(32,50,100,.06);

    transform: translateY(-2px);

}


.quick-action i {

    color: var(--primary);

    font-size: 18px;

}


.quick-action strong {

    font-size: 11px;

    line-height: 1.4;

}


/* =========================================================
    PROFIL
========================================================= */

.profile-head {

    margin-bottom: 20px;

    padding-bottom: 22px;

    border-bottom: 1px solid #edf0f4;

    display: flex;
    align-items: center;

    gap: 16px;

}


.profile-avatar {

    width: 60px;
    height: 60px;

    flex: none;

    border-radius: 16px;

    background:
        linear-gradient(
            145deg,
            #4569eb,
            #7759e8
        );

    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Manrope", sans-serif;

    font-size: 18px;
    font-weight: 800;

}


.profile-head h4 {

    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

}


.profile-head p {

    margin: 3px 0 0;

    color: var(--text-light);

    font-size: 10px;

}


.info-row {

    width: 100%;

    padding: 13px 0;

    border-bottom: 1px solid #f0f2f5;

    display: grid;

    grid-template-columns:
        150px
        minmax(0, 1fr);

    gap: 15px;

}


.info-row:last-child {
    border-bottom: 0;
}


.info-label {

    color: var(--text-light);

    font-size: 11px;

}


.info-value {

    min-width: 0;

    font-size: 12px;
    font-weight: 600;

    overflow-wrap: anywhere;

}


/* =========================================================
    CARTE PREMIUM
========================================================= */

.premium-card {

    position: relative;
    width: 100%;
    min-height: 230px;
    padding: 28px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: var(--radius);
    background:
        linear-gradient(
            135deg,
            #121a30 0%,
            #1c2745 55%,
            #34467a 100%
        );

    color: #ffffff;
    box-shadow:
        0 17px 40px rgba(16,25,48,.18);

}


.premium-card::before {

    content: "";

    position: absolute;

    top: -120px;
    right: -70px;

    width: 270px;
    height: 270px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(112,137,255,.35),
            transparent 67%
        );

}


.premium-card::after {

    content: "";

    position: absolute;

    right: 30px;
    bottom: -100px;

    width: 180px;
    height: 180px;

    border: 1px solid rgba(255,255,255,.06);

    border-radius: 50%;

}


.premium-content {

    position: relative;
    z-index: 2;

}


.premium-top {

    margin-bottom: 48px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

}


.premium-name {

    font-family: "Manrope", sans-serif;

    font-size: 12px;
    font-weight: 700;

}


.premium-level {

    display: flex;
    align-items: center;

    gap: 6px;

    color: #cad4ff;

    font-size: 9px;
    font-weight: 800;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.premium-number {

    margin-bottom: 29px;

    font-family: "Manrope", sans-serif;

    font-size: 20px;

    letter-spacing: 3px;

    white-space: nowrap;

}


.premium-footer {

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 15px;

}


.premium-footer small {

    display: block;

    margin-bottom: 4px;

    color: #8290b0;

    font-size: 8px;

    letter-spacing: 1px;

    text-transform: uppercase;

}


.premium-footer strong {

    display: block;

    font-size: 11px;

}


.premium-chip {

    color: #bdc9ff;

    font-size: 22px;

}


/* =========================================================
    DOCUMENTS
========================================================= */

.document {

    width: 100%;

    padding: 15px 0;

    border-bottom: 1px solid #eef0f4;

    display: flex;
    align-items: center;

    gap: 13px;

}


.document:first-child {
    padding-top: 0;
}


.document:last-child {

    padding-bottom: 0;

    border-bottom: 0;

}


.doc-icon {

    width: 40px;
    height: 40px;

    flex: none;

    border-radius: 10px;

    background: #f1f4ff;

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

}


.doc-info {

    min-width: 0;

    flex: 1;

}


.doc-info strong {

    display: block;

    font-size: 11px;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

}


.doc-info span {

    color: var(--text-light);

    font-size: 9px;

}


.doc-download {

    flex: none;

    color: #8c96a7;

    font-size: 12px;

}

.hidden
{
    display:none !important;
}

/* =========================================================
   AFFICHER / MASQUER MOT DE PASSE
========================================================= */

.password-wrapper {
    position: relative;
}

.password-wrapper .form-control {
    padding-right: 55px;
}

.password-toggle {
    position: absolute;

    top: 50%;
    right: 16px;

    transform: translateY(-50%);

    width: 38px;
    height: 38px;

    padding: 0;

    border: 0;
    outline: 0;

    border-radius: 9px;

    background: transparent;

    color: #919bad;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    transition:
        color .2s,
        background .2s;
}

.password-toggle:hover {
    color: #3659e3;
    background: #f1f4ff;
}

.password-toggle i {
    position: static;

    transform: none;

    color: inherit;

    pointer-events: none;
}

.alert {
    padding: 14px 18px;
    margin: 0px;
    border-radius: 10px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}


/* Succès */
.alert-success {
    color: #176b4d;
    background: #edf9f4;
    border-color: #b9e7d2;
}


/* Erreur */
.alert-danger {
    color: #9f2f2f;
    background: #fff1f1;
    border-color: #efc1c1;
}

.output-identification
{
    margin-bottom: 20px;
}

/* =========================================================
TELEPHONE - INTL TEL INPUT
========================================================= */

.phoneNumberContainer,
.phoneNumberContainer .form-group,
.phoneNumberContainer .auth-input-wrap,
.phoneNumberContainer .iti {
    width: 100% !important;
}

/* intl-tel-input doit prendre toute la largeur */
.phoneNumberContainer .iti {
    display: block !important;
    position: relative !important;
}

/* Le champ téléphone prend toute la largeur */
.phoneNumberContainer .iti input {
    width: 100% !important;
}

/* On masque l'ancienne icône téléphone :
   le drapeau la remplace */
.phone-input-wrap > .fa-phone {
    display: none !important;
}

/* Le drapeau doit être au-dessus du champ */
.phoneNumberContainer .iti__country-container {
    z-index: 5 !important;
    display: flex;
    height: 55px;
    border-bottom: 0px;
    border-top: 0px;
}

/* Laisse suffisamment de place pour le drapeau */
.phoneNumberContainer input.iti__tel-input {
    padding-left: 60px !important;
}

.iti__selected-country-primary
{
    padding-left: 15px;
}

/* Liste des pays */
.iti__dropdown-content {
    z-index: 999999 !important;
}

/* Liste scrollable */
.iti__country-list {
    max-height: 300px !important;
    overflow-y: auto !important;
}

/* =========================================================
    RESPONSIVE 1300
========================================================= */

@media (max-width: 1300px) {

    .dashboard-content {
        padding: 30px;
    }


    .main-grid {

        grid-template-columns:
            minmax(0, 1.5fr)
            minmax(300px, .8fr);

    }


    .reservation-item {

        grid-template-columns:
            120px
            minmax(0, 1fr)
            auto;

    }


    .car-image {
        width: 120px;
    }

}


/* =========================================================
    RESPONSIVE 1150
========================================================= */

@media (max-width: 1150px) {

    .stats-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }


    .main-grid {
        grid-template-columns: 1fr;
    }


    .premium-card {
        max-width: 500px;
    }

}


/* =========================================================
    TABLETTE
========================================================= */

@media (max-width: 960px) {

    .dashboard-layout {
        display: block;
    }


    .sidebar {

        position: relative;

        top: auto;
        left: auto;
        bottom: auto;

        width: 100%;
        height: auto;

        padding: 15px 17px;

        overflow: visible;

    }


    .sidebar-brand {
        padding: 4px 5px 14px;
    }


    .nav-title,
    .sidebar-bottom {
        display: none;
    }


    .sidebar-nav {

        flex-direction: row;

        overflow-x: auto;

        padding-bottom: 3px;

        scrollbar-width: none;

    }


    .sidebar-nav::-webkit-scrollbar {
        display: none;
    }


    .sidebar-nav + .nav-title + .sidebar-nav {
        margin-top: 6px;
    }


    .sidebar-nav a {

        width: auto;

        flex: none;

        padding: 0 15px;

        white-space: nowrap;

    }


    .dashboard-main {

        width: 100%;

        margin-left: 0;

    }


    .topbar {

        padding: 0 20px;

    }


    .dashboard-content {

        max-width: none;

        padding: 25px 20px;

    }

}


/* =========================================================
    MOBILE
========================================================= */

@media (max-width: 700px) {

    .auth-page {
        display: block;
    }


    .auth-visual {

        min-height: 370px;

        padding: 30px;

    }


    .auth-presentation {
        margin: 35px 0 0;
    }


    .auth-presentation h1 {

        font-size: 36px;

        letter-spacing: -1.5px;

    }


    .auth-presentation p {
        font-size: 14px;
    }


    .auth-form-side {

        min-height: auto;

        padding: 50px 24px;

    }


    .form-row {
        grid-template-columns: 1fr;
    }


    .welcome {
        display: block;
    }


    .member-status {

        display: inline-flex;

        margin-top: 20px;

    }


    .stats-grid {
        grid-template-columns: 1fr;
    }


    .reservation-item {

        grid-template-columns:
            100px
            minmax(0, 1fr);

    }


    .car-image {

        width: 100px;
        height: 80px;

    }


    .reservation-price {

        grid-column: 1 / -1;

        text-align: left;

    }


    .quick-actions {
        grid-template-columns: 1fr;
    }


    .info-row {
        grid-template-columns: 1fr;
    }


    .info-value {
        margin-top: -6px;
    }


    .user-small-info {
        display: none;
    }


    .topbar-title span {
        display: none;
    }

}


/* =========================================================
    PETIT MOBILE
========================================================= */

@media (max-width: 480px) {

    .auth-visual {

        min-height: 320px;

        padding: 25px;

    }


    .auth-presentation h1 {
        font-size: 31px;
    }


    .auth-badge {
        font-size: 11px;
    }


    .auth-form-side {
        padding: 40px 18px;
    }


    .auth-title h2 {
        font-size: 29px;
    }


    .topbar {
        height: 70px;
    }


    .dashboard-content {
        padding: 20px 14px;
    }


    .welcome h1 {
        font-size: 27px;
    }


    .card-header {
        padding: 0 18px;
    }


    .card-body {
        padding: 18px;
    }


    .premium-card {
        padding: 22px;
    }


    .premium-number {

        font-size: 16px;

        letter-spacing: 2px;

    }

}

/* =========================================================
   TYPOGRAPHIE - TAILLES PLUS CONFORTABLES
========================================================= */

body {
    font-size: 15px;
}


/* =========================================================
   SIDEBAR
========================================================= */

.sidebar-brand {
    font-size: 19px;
}

.nav-title {
    font-size: 11px;
}

.sidebar-nav a {
    font-size: 14px;
}

.support-card strong {
    font-size: 14px;
}

.support-card span {
    font-size: 12px;
}

.support-card a {
    font-size: 12px;
}


/* =========================================================
   TOPBAR
========================================================= */

.topbar-title strong {
    font-size: 18px;
}

.topbar-title span {
    font-size: 13px;
}

.user-small-info strong {
    font-size: 13px;
}

.user-small-info span {
    font-size: 11px;
}


/* =========================================================
   BIENVENUE
========================================================= */

.welcome-label {
    font-size: 12px;
}

.welcome h1 {
    font-size: 32px;
}

.welcome p {
    font-size: 15px;
}

.member-status {
    font-size: 13px;
}


/* =========================================================
   STATISTIQUES
========================================================= */

.stat-title {
    font-size: 14px;
}

.stat-number {
    font-size: 29px;
}

.stat-desc {
    font-size: 12px;
}


/* =========================================================
   CARTES
========================================================= */

.card-header h3 {
    font-size: 17px;
}

.card-header a {
    font-size: 13px;
}


/* =========================================================
   RÉSERVATION
========================================================= */

.reservation-status {
    font-size: 11px;
}

.reservation-info h4 {
    font-size: 17px;
}

.reservation-info p {
    font-size: 13px;
}

.reservation-price strong {
    font-size: 21px;
}

.reservation-price span {
    font-size: 11px;
}


/* =========================================================
   ACTIONS RAPIDES
========================================================= */

.quick-action strong {
    font-size: 13px;
}

.quick-action i {
    font-size: 19px;
}


/* =========================================================
   PROFIL / INFORMATIONS
========================================================= */

.profile-head h4 {
    font-size: 16px;
}

.profile-head p {
    font-size: 12px;
}

.info-label {
    font-size: 13px;
}

.info-value {
    font-size: 14px;
}


/* =========================================================
   CARTE PREMIUM
========================================================= */

.premium-name {
    font-size: 14px;
}

.premium-level {
    font-size: 11px;
}

.premium-number {
    font-size: 21px;
}

.premium-footer small {
    font-size: 10px;
}

.premium-footer strong {
    font-size: 12px;
}


/* =========================================================
   DOCUMENTS
========================================================= */

.doc-info strong {
    font-size: 13px;
}

.doc-info span {
    font-size: 11px;
}

.doc-download {
    font-size: 14px;
}


/* =========================================================
   FORMULAIRES CONNEXION / INSCRIPTION
========================================================= */

.auth-title .small-label {
    font-size: 12px;
}

.auth-title h2 {
    font-size: 34px;
}

.auth-title p {
    font-size: 15px;
}

.form-group label {
    font-size: 14px;
}

.form-control {
    font-size: 14px;
}

.form-options {
    font-size: 13px;
}

.switch-auth {
    font-size: 14px;
}

.security-line {
    font-size: 12px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 700px) {

    body {
        font-size: 14px;
    }

    .welcome h1 {
        font-size: 28px;
    }

    .welcome p {
        font-size: 14px;
    }

    .card-header h3 {
        font-size: 16px;
    }

    .stat-title {
        font-size: 13px;
    }

    .stat-number {
        font-size: 27px;
    }

    .info-label {
        font-size: 12px;
    }

    .info-value {
        font-size: 13px;
    }

}