/* =====================================================
   SERVYLO — LOGIN PAGE (Anima pixel-perfect)
   ===================================================== */

/* Reset du layout parent (masque header/footer qui pourraient interférer) */
body { background: #ffffff; }
footer, .footer-area, .footer { display: none !important; }
.login-form-custom { margin: 0; padding: 0; }
.login-form-custom button { background: none; width: auto; height: auto; }
.sv-login .nice-select,
.sv-login .nice-select-dropdown { display: none !important; }
.sv-login input[type="text"],
.sv-login input[type="password"],
.sv-login input[type="email"] {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 2 !important;
}
.demo-login-table { display: none !important; }

/* Container global */
.sv-login {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(420px, 46%) 1fr;
    background: #ffffff;
    font-family: 'Inter', 'Poppins', sans-serif;
    color: #0f172a;
    position: relative;
}

/* =====================================================
   LEFT PANEL — bleu avec stats (desktop only)
   ===================================================== */
.sv-login__left {
    background:
        radial-gradient(circle at 85% 0%, rgba(255,255,255,0.12) 0%, transparent 45%),
        radial-gradient(circle at 15% 100%, rgba(255,255,255,0.10) 0%, transparent 45%),
        linear-gradient(160deg, #0243f1 0%, #0235c9 60%, #1e3a8a 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 48px 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Pattern décoratif en dots */
.sv-login__left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.12) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.4;
    pointer-events: none;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.8) 0%, transparent 100%);
}

/* Shapes décoratives flottantes */
.sv-login__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.sv-login__shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    border: 1px solid rgba(255,255,255,0.1);
    animation: svFloatShape 8s ease-in-out infinite;
}
.sv-login__shape--1 {
    width: 180px;
    height: 180px;
    top: 8%;
    right: -60px;
    animation-delay: 0s;
}
.sv-login__shape--2 {
    width: 120px;
    height: 120px;
    bottom: 18%;
    left: -40px;
    animation-delay: -3s;
}
.sv-login__shape--3 {
    width: 80px;
    height: 80px;
    top: 42%;
    right: 8%;
    animation-delay: -5s;
}
@keyframes svFloatShape {
    0%, 100% { transform: translateY(0) rotate(0); }
    50% { transform: translateY(-16px) rotate(6deg); }
}

.sv-login__left-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 44px;
    max-width: 560px;
    width: 100%;
    animation: svSlideUp 0.6s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes svSlideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.sv-login__brand-subtitle {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255,255,255,0.92);
    font-size: 18px;
    line-height: 1.55;
    margin: 0;
    max-width: 520px;
    text-align: center;
}

/* Stats grid */
.sv-login__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    width: 100%;
}
.sv-login__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 24px 16px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 16px;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), background 0.4s ease, border-color 0.4s ease;
}
.sv-login__stat:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.3);
}
.sv-login__stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
    transition: transform 0.4s ease;
}
.sv-login__stat-icon i {
    font-size: 22px;
    color: #ffffff;
}
.sv-login__stat:hover .sv-login__stat-icon {
    transform: scale(1.08) rotate(-4deg);
}
.sv-login__stat-value {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 800;
    color: #ffffff;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: 0.3px;
}
.sv-login__stat-label {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 500;
    color: rgba(255,255,255,0.88);
    font-size: 13.5px;
    line-height: 1.35;
    text-align: center;
}

/* Testimonial quote */
.sv-login__quote {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0;
    padding: 28px 28px 24px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
}
.sv-login__quote-mark {
    position: absolute;
    top: 14px;
    left: 20px;
    font-size: 28px;
    color: rgba(255,255,255,0.25);
}
.sv-login__quote p {
    margin: 0 0 16px;
    padding-left: 36px;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.55;
    color: rgba(255,255,255,0.95);
    font-style: italic;
}
.sv-login__quote-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 36px;
    gap: 12px;
    flex-wrap: wrap;
}
.sv-login__quote-author cite {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: rgba(255,255,255,0.88);
    font-style: normal;
}
.sv-login__quote-stars {
    display: inline-flex;
    gap: 2px;
}
.sv-login__quote-stars i {
    font-size: 14px;
    color: #fbbf24;
}

/* Logo principal du panneau bleu */
.sv-login__brand-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.sv-login__brand-logo:hover { transform: scale(1.03); }
.sv-login__brand-logo img {
    height: 48px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

/* =====================================================
   RIGHT PANEL — formulaire
   ===================================================== */
.sv-login__right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    min-height: 100vh;
    position: relative;
}

/* Back button flèche retour — top-left de l'écran */
.sv-login__back {
    position: fixed;
    top: 32px;
    left: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 99px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0243f1;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 8px 24px -8px rgba(0,0,0,0.25);
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
    z-index: 100;
}
.sv-login__back i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.sv-login__back:hover {
    background: #f8fafc;
    transform: translateX(-3px);
    box-shadow: 0 12px 28px -8px rgba(0,0,0,0.3);
}
.sv-login__back:hover i { transform: translateX(-2px); }
.sv-login__form-wrap {
    width: 100%;
    max-width: 480px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    animation: svFormFadeIn 0.6s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
@keyframes svFormFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Logo au-dessus du form (web + mobile), centré */
.sv-login__mobile-logo {
    display: inline-flex;
    align-self: center;
    margin: 0 auto 8px;
    transition: transform 0.3s ease;
}
.sv-login__mobile-logo:hover { transform: scale(1.03); }
.sv-login__mobile-logo img {
    width: auto;
    height: 44px;
    display: block;
}

.sv-login__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sv-login__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0243f1;
    font-size: 44px;
    letter-spacing: -1.2px;
    line-height: 1.15;
    margin: 0;
}
.sv-login__subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #737373;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

/* =====================================================
   FORM — register variant
   ===================================================== */
.sv-login__field-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 12px;
    width: 100%;
    align-items: start;
}
.sv-login__input-wrap select {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    height: auto !important;
    box-shadow: none !important;
    min-width: 0;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23888' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0 center !important;
    padding-right: 20px !important;
}
.sv-login__input-wrap select option { color: #0f172a; background: #ffffff; }
.sv-login__checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 4px 0 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
}
.sv-login__checkbox-field input[type="checkbox"] {
    display: none;
}
.sv-login__checkbox-field .sv-login__checkbox {
    margin-top: 2px;
    flex-shrink: 0;
}
.sv-login__checkbox-field input[type="checkbox"]:checked + .sv-login__checkbox {
    background: #0243f1;
    border-color: #0243f1;
}
.sv-login__checkbox-field input[type="checkbox"]:checked + .sv-login__checkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
.sv-login__checkbox-field label,
.sv-login__checkbox-field span {
    cursor: pointer;
    margin: 0;
    font-weight: 400;
}
.sv-login__checkbox-field a {
    color: #0243f1;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.sv-login__checkbox-field a:hover { color: #0235c9; }

@media (max-width: 480px) {
    .sv-login__field-row { grid-template-columns: 1fr; }
}

/* =====================================================
   FORM
   ===================================================== */
.sv-login__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 32px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 10px 10px rgba(0,0,0,0.04);
    border: 1px solid rgba(15,23,42,0.04);
}
.sv-login__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
    min-width: 0;
}
.sv-login__input-wrap { min-width: 0; }
.sv-login__input { min-width: 0; }
.sv-login__label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #171717;
    font-size: 14px;
    line-height: 1.4;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
}
.sv-login__required { color: #ed1515; font-weight: 700; }

.sv-login__input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    height: 48px;
    background: #f6f6f6;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    padding: 0 16px;
    gap: 10px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.sv-login__input-wrap:focus-within {
    border-color: #0243f1;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(2,67,241,0.08);
}
.sv-login__input-icon {
    width: 16px !important;
    height: 16px !important;
    max-width: none !important;
    flex-shrink: 0;
    display: block !important;
    opacity: 0.7;
}
.sv-login__input-icon-la {
    font-size: 16px;
    color: #888888;
    flex-shrink: 0;
}
.sv-login__input {
    flex: 1;
    border: none !important;
    outline: none !important;
    background: transparent !important;
    padding: 0 !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    color: #0f172a !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    height: auto !important;
    box-shadow: none !important;
    min-width: 0;
}
.sv-login__input::placeholder {
    color: #888888;
    font-weight: 400;
    opacity: 1;
}

/* Password toggle button */
.sv-login__password-toggle {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: auto !important;
    height: auto !important;
}
.sv-login__password-toggle img {
    width: 16px;
    height: 16px;
    display: block;
}

/* =====================================================
   OPTIONS (remember + forgot)
   ===================================================== */
.sv-login__options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 4px;
    gap: 12px;
    flex-wrap: wrap;
}
.sv-login__remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #737373;
    font-size: 13px;
    margin: 0;
}
.sv-login__remember input[type="checkbox"] {
    display: none;
}
.sv-login__checkbox {
    width: 16px;
    height: 16px;
    background: #ffffff;
    border: 1.5px solid #888888;
    border-radius: 4px;
    flex-shrink: 0;
    transition: all 0.2s ease;
    position: relative;
}
.sv-login__remember input[type="checkbox"]:checked + .sv-login__checkbox {
    background: #0243f1;
    border-color: #0243f1;
}
.sv-login__remember input[type="checkbox"]:checked + .sv-login__checkbox::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.sv-login__forgot {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #0243f1;
    font-size: 13px;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.sv-login__forgot:hover {
    background: rgba(2,67,241,0.06);
    color: #0243f1;
}

/* =====================================================
   SUBMIT
   ===================================================== */
.sv-login__submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 24px;
    background: linear-gradient(135deg, #0243f1 0%, #2563eb 100%) !important;
    border: none !important;
    border-radius: 14px !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    font-size: 17px !important;
    cursor: pointer !important;
    transition: all 0.35s cubic-bezier(0.16,1,0.3,1) !important;
    width: 100% !important;
    height: auto !important;
    line-height: 1.4 !important;
    box-shadow: 0 12px 28px -10px rgba(2,67,241,0.55), 0 4px 10px -4px rgba(2,67,241,0.35), inset 0 1px 0 rgba(255,255,255,0.2);
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}
/* Shimmer effect au hover */
.sv-login__submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.6s ease;
}
.sv-login__submit:hover::before {
    left: 100%;
}
.sv-login__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px -10px rgba(2,67,241,0.6), 0 6px 14px -4px rgba(2,67,241,0.4), inset 0 1px 0 rgba(255,255,255,0.25);
    background: linear-gradient(135deg, #0235c9 0%, #1d4ed8 100%) !important;
    color: #ffffff !important;
}
.sv-login__submit:hover .sv-login__submit-arrow {
    transform: translateX(4px);
}
.sv-login__submit:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    filter: grayscale(0.3);
}
.sv-login__submit-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
}
.sv-login__submit-arrow {
    font-size: 18px;
    transition: transform 0.35s ease;
    position: relative;
    z-index: 1;
}

/* Trust badge sous le submit */
.sv-login__trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 16px;
    background: rgba(34,197,94,0.08);
    border: 1px solid rgba(34,197,94,0.18);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #166534;
}
.sv-login__trust i {
    font-size: 14px;
    color: #16a34a;
    flex-shrink: 0;
}

/* =====================================================
   DIVIDER + SOCIAL
   ===================================================== */
.sv-login__divider {
    display: flex;
    align-items: center;
    gap: 17px;
    margin: 8px 0 4px;
}
.sv-login__divider::before,
.sv-login__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #d1d1d1;
}
.sv-login__divider span {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #888888;
    font-size: 16px;
    line-height: 1.2;
    white-space: nowrap;
}

.sv-login__social {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}
.sv-login__social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #888888;
    font-size: 15px;
    line-height: 1.4;
    transition: all 0.25s ease;
    height: 46px;
}
.sv-login__social-btn:hover {
    border-color: #0243f1;
    background: rgba(2,67,241,0.03);
    color: #0243f1;
    transform: translateY(-1px);
}
.sv-login__social-btn img {
    width: 24px !important;
    height: 24px !important;
    max-width: none !important;
    display: block !important;
}

/* =====================================================
   SIGNUP LINK
   ===================================================== */
.sv-login__signup {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(15,23,42,0.06);
    font-family: 'Poppins', 'Inter', sans-serif;
    font-weight: 400;
    color: #747980;
    font-size: 15px;
}
.sv-login__signup a {
    color: #0243f1;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-left: 4px;
    transition: color 0.2s ease;
}
.sv-login__signup a:hover { color: #0235c9; }

/* =====================================================
   ALERTS
   ===================================================== */
.sv-login__alert {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 4px;
}
.sv-login__alert i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.sv-login__alert--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}
.sv-login__alert--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
}
.sv-login__alert p { margin: 0 0 2px; }
.sv-login__alert p:last-child { margin-bottom: 0; }

/* Inline field error (par champ) */
.sv-login__field-error {
    display: none;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: #dc2626;
    font-weight: 500;
    margin: 6px 2px 0;
    line-height: 1.4;
}
.sv-login__field.is-invalid .sv-login__field-error { display: block; }
.sv-login__field.is-invalid .sv-login__input-wrap {
    border-color: #ef4444 !important;
    background: #fef2f2 !important;
    box-shadow: 0 0 0 4px rgba(239,68,68,0.08) !important;
}
.sv-login__field.is-invalid .sv-login__input-icon-la,
.sv-login__field.is-invalid .sv-login__input-icon { color: #ef4444 !important; }

/* =====================================================
   VARIANTE SELLER (prestataire) — même bleu que client
   ===================================================== */
/* (plus de vert — identique au client, différenciation via titre) */

/* Badge type compte (header form) */
.sv-login__type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(2,67,241,.10) 0%, rgba(37,99,235,.06) 100%);
    color: #0243f1;
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 14px;
    border: 1px solid rgba(2,67,241,.18);
}
.sv-login__type-badge i { font-size: 14px; }

/* Variante icon-only (sans cercle, juste l'icône bleue) */
.sv-login__type-badge--icon {
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    justify-content: center;
    background: transparent;
    color: #0243f1;
    border: none;
    box-shadow: none;
}
.sv-login__type-badge--icon i,
.sv-login__type-badge--icon svg {
    font-size: 56px;
    color: #0243f1;
    line-height: 1;
}
.sv-login__type-badge--icon svg[stroke] { stroke: #0243f1; }
/* seller icon badge — même style */

/* Header centré (pour les nouvelles pages register avec badge icon centré) */
.sv-login__header--centered {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sv-login__header--centered .sv-login__subtitle {
    text-align: center;
    margin: 0;
}

/* Titre de page (h1) — différencie client vs prestataire */
.sv-login__title {
    font-family: 'Inter', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin: 0;
}
/* seller badge — même bleu que client */

/* Submit button seller — même bleu que client */

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
    .sv-login { grid-template-columns: minmax(380px, 42%) 1fr; }
    .sv-login__left { padding: 48px 32px 64px; }
    .sv-login__brand-logo img { height: 42px; }
    .sv-login__brand-subtitle { font-size: 16px; }
    .sv-login__stat-value { font-size: 24px; }
    .sv-login__stat-label { font-size: 12.5px; }
    .sv-login__stat { padding: 20px 14px; }
    .sv-login__stat-icon { width: 40px; height: 40px; }
    .sv-login__stat-icon i { font-size: 20px; }
    .sv-login__quote { padding: 22px 22px 20px; }
    .sv-login__quote p { font-size: 14px; padding-left: 30px; }
    .sv-login__quote-author { padding-left: 30px; }
    .sv-login__quote-mark { font-size: 24px; top: 12px; left: 16px; }
}

@media (max-width: 900px) {
    .sv-login { grid-template-columns: 1fr; min-height: auto; }
    .sv-login__left { display: none; }
    .sv-login__right { padding: 80px 20px 40px; min-height: 100vh; }
    .sv-login__form-wrap { max-width: 440px; gap: 20px; }
    .sv-login__mobile-logo img { height: 40px; }
    .sv-login__subtitle { font-size: 15px; }
    .sv-login__form { padding: 24px; }
    /* Sur mobile, le panneau bleu disparaît → back button sur fond blanc */
    .sv-login__back {
        top: 20px;
        left: 20px;
        padding: 8px 14px;
        font-size: 13px;
        background: #ffffff;
        border-color: rgba(15,23,42,0.1);
        color: #64748b;
    }
    .sv-login__back:hover {
        background: #0243f1;
        border-color: #0243f1;
        color: #ffffff;
    }
}

@media (max-width: 480px) {
    .sv-login__right { padding: 70px 16px 30px; }
    .sv-login__form-wrap { gap: 18px; }
    .sv-login__mobile-logo img { height: 32px; }
    .sv-login__title { font-size: 28px; letter-spacing: -0.8px; }
    .sv-login__subtitle { font-size: 14px; }
    .sv-login__form { padding: 20px 18px; gap: 16px; border-radius: 14px; }
    .sv-login__input-wrap { height: 46px; padding: 0 14px; }
    .sv-login__input { font-size: 14px !important; }
    .sv-login__submit { padding: 13px 20px; font-size: 16px !important; }
    .sv-login__social-btn { font-size: 14px; gap: 12px; height: 44px; }
    .sv-login__options { font-size: 12px; }
    .sv-login__signup { font-size: 14px; }
    .sv-login__back { top: 14px; left: 14px; padding: 7px 12px; font-size: 12px; }
    .sv-login__back span { display: none; }
    .sv-login__back i { font-size: 15px; }
}
