/* input(62,1): run-time error CSS1019: Unexpected token, found '@' */
/* Layout général */
.login-split {
    display: flex;
    min-height: 100vh;
}

/* Colonne visuelle gauche avec effet "Ken Burns" */
.login-visual {
    flex: 1 1 55%;
    position: relative;
    overflow: hidden;
}

    .login-visual::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/Content/showcase/img/bg-featuredapp1.jpg?v=rdfFR6S0b5GBNLeQfyPs5iNurLY');
        background-size: cover;
        background-position: center;
        transform: scale(1.08) translate3d(0,0,0);
        will-change: transform;
        animation: kenburns 30s ease-in-out infinite alternate;
    }

.login-visual-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0,0,0,.55), rgba(0,0,0,.35));
}

.login-visual-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 56px;
    color: #fff;
    max-width: 815px;
    height: 100%;
}

/* Animation Ken Burns */
@keyframes kenburns {
    0% {
        transform: scale(1.08) translate3d(-1.5%, -1.5%, 0);
    }

    50% {
        transform: scale(1.12) translate3d(1%, 0.5%, 0);
    }

    100% {
        transform: scale(1.15) translate3d(2%, 2%, 0);
    }
}

@@media (prefers-reduced-motion: reduce) {
    .login-visual::before {
        animation: none;
        transform: none;
    }
}

.lv-title {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: .02em;
    margin: 0 0 24px;
    text-shadow: 0 2px 10px rgba(0,0,0,.25);
}

.testimonial {
    background: rgba(0,0,0,.25);
    border-radius: 14px;
    padding: 22px 24px;
    margin: 0 0 16px;
}

    .testimonial blockquote {
        margin: 0 0 16px;
        font-size: 16px;
        line-height: 1.5;
    }

    .testimonial figcaption {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 14px;
        opacity: .95;
    }

    .testimonial .avatar {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255,255,255,.85);
        color: #111;
        font-weight: 700;
    }

.trust-note {
    margin-top: 18px;
    opacity: .9;
    font-size: 14px;
}

/* Étoiles */
.stars {
    display: inline-block;
    margin-top: 4px;
    font-size: 16px;
}

.star {
    color: rgba(255,255,255,.5);
}

    .star.filled {
        color: #FFD700;
    }

/* Colonne formulaire */
.login-form {
    flex: 1 1 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: #fff;
    min-height: 100vh;
}

.login-panel {
    width: 100%;
    max-width: 450px;
    background: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    color: #222;
}

/* Logo texte + baseline + séparateur */
.login-logo-text {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: 0.5rem;
    color: #3a3f51;
    text-decoration: none;
    display: inline-block;
}

.login-logo-baseline {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

.login-separator {
    width: 60px;
    height: 3px;
    background-color: #3a3f51;
    margin: 16px auto 25px auto;
    border-radius: 2px;
}

/* Panel body compact */
.login-panel .panel-body {
    padding: 0 15px 48px 15px;
}

/* Espacements internes */
.form-group {
    margin-bottom: 24px;
}

h4.text-center.pv {
    margin-bottom: 32px;
}

.btn {
    margin-top: 16px;
}

hr {
    margin-top: 40px;
    margin-bottom: 28px;
}

/* Boutons & champs */
.form-control.input-lg {
    height: 48px;
    border-radius: 12px;
}

.btn.btn-lg {
    border-radius: 12px;
}

.btn-primary {
    background-color: #3a3f51;
    border-color: #3a3f51;
}

    .btn-primary:hover {
        filter: brightness(1.05);
    }

.btn-default {
    background: transparent;
    color: #222;
    border: 1px solid rgba(0,0,0,.15);
}

    .btn-default:hover {
        background: rgba(0,0,0,.04);
    }

/* Responsive */
@media (max-width: 767px) {
    .login-split {
        display: block;
    }

    .login-visual {
        display: none;
    }
    /* ✅ cache le côté gauche en mobile */
    .login-form {
        padding: 20px 16px;
        min-height: auto;
    }

    .login-panel {
        max-width: none;
    }
}


.login-title {
    font-size: 22px !important;
    margin-bottom: 20px !important;
}
