﻿/* Admin\Login.aspx sayfasinin stilleri (sayfa icindeki <style> blogundan tasindi) */

        *, *::before, *::after {
            box-sizing: border-box;
        }

        :root {
            --primary:        #f15721;
            --primary-dark:   #d44a18;
            --primary-pale:   #fff5f1;
            --primary-glow:   rgba(241, 87, 33, 0.13);
            --primary-shadow: rgba(241, 87, 33, 0.28);
            --radius:         10px;
            --radius-sm:      8px;
            --radius-lg:      18px;
            --ease:           0.2s ease;
            --font:           'Plus Jakarta Sans', system-ui, sans-serif;
        }
      html, body {
    height: 100%;
    overflow: hidden;
    margin: 0;
    padding: 0;
 
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    background: #eef0f3 !important;
}

        .app-content,
        .content-wrapper,
        .content-body {
            width: 100%;
        }

        .flexbox-container {
            display: flex !important;
            justify-content: center !important;
            align-items: center !important;
            min-height: calc(60vh - 28px);
            width: 100%;
            margin: 0 !important;
              padding-top: 28px !important; 
              padding-bottom: 28px !important; 
        }

        .col-xl-24 {
            width: 100% !important;
            max-width: 960px !important;
            padding: 0 !important;
        }

        .card.bg-authentication {
            width: 100% !important;
            border-radius: var(--radius-lg) !important;
            box-shadow: 0 12px 48px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.05) !important;
            border: 1px solid #e8e8e8 !important;
            overflow: hidden !important;
            display: flex !important;
            flex-direction: column !important;
            animation: cardIn .5s cubic-bezier(.16,1,.3,1) both;
        }

        @keyframes cardIn {
            from { opacity: 0; transform: translateY(22px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .card.bg-authentication > .row.m-0 {
            display: flex !important;
            flex-wrap: nowrap !important;
            flex: 1;
        }
        .col-lg-6.d-lg-block {
            flex: 0 0 50% !important;
            max-width: 50% !important;
            background: linear-gradient(145deg, #fff3ee 0%, #ffddd0 60%, #ffc8b4 100%) !important;
            padding: 0 !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: stretch !important;
            justify-content: stretch !important;
            position: relative !important;
            overflow: hidden !important;
        }
        .col-lg-6.d-lg-block::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 20% 20%, rgba(241,87,33,0.15) 0%, transparent 60%),
                radial-gradient(ellipse 60% 80% at 80% 80%, rgba(241,87,33,0.08) 0%, transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        /* ── Carousel wrapper ── */
        .left-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 460px;
            z-index: 1;
            overflow: hidden;
        }

        /* ── Slides ── */
        .carousel-slide {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 48px 36px;
            opacity: 0;
            transform: translateX(40px);
            transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
            pointer-events: none;
        }

        .carousel-slide.active {
            opacity: 1;
            transform: translateX(0);
            pointer-events: auto;
        }

        .carousel-slide.exit {
            opacity: 0;
            transform: translateX(-40px);
        }
        .slide-img-wrap {
            position: relative;
            margin-bottom: 88px;
        }

        .slide-img-wrap img {
            max-width: 320px;
            max-height: 320px;
            width: auto;
            height: auto;
            filter: drop-shadow(0 20px 40px rgba(241,87,33,0.35));
            animation: floatImg 5s ease-in-out infinite;
        }

        @keyframes floatImg {
            0%, 100% { transform: translateY(0); }
            50%       { transform: translateY(-12px); }
        }

        .slide-img-ring {
            position: absolute;
            inset: -20px;
            border-radius: 50%;
            border: 1px solid rgba(241,87,33,0.25);
            animation: ringPulse 3s ease-in-out infinite;
        }

        .slide-img-ring:nth-child(2) {
            inset: -40px;
            border-color: rgba(241,87,33,0.12);
            animation-delay: 0.5s;
        }

        @keyframes ringPulse {
            0%, 100% { transform: scale(1); opacity: 0.6; }
            50%       { transform: scale(1.06); opacity: 1; }
        }
        .slide-title {
            font-size: 22px;
            font-weight: 800;
            color: #b83e10;
            text-align: center;
            letter-spacing: -0.4px;
            margin: 0 0 8px;
            line-height: 1.25;
        }

        .slide-sub {
            font-size: 13px;
            font-weight: 500;
            color: #c06040;
            text-align: center;
            line-height: 1.6;
            max-width: 280px;
            margin: 0 auto 22px;
        }

        /* Badges */
        .slide-badges {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .slide-badge {
            background: rgba(241,87,33,0.12);
            border: 1px solid rgba(241,87,33,0.25);
            color: #b83e10;
            font-size: 11px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 20px;
            letter-spacing: 0.4px;
        }

        /* ── Slide 2: Feature cards ── */
        .slide-icon-hero {
            width: 88px;
            height: 88px;
            border-radius: 24px;
            background: rgba(241,87,33,0.12);
            border: 1px solid rgba(241,87,33,0.25);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            box-shadow: 0 8px 32px rgba(241,87,33,0.15);
        }

        .slide-icon-hero svg {
            width: 44px;
            height: 44px;
            color: #f15721;
        }

        .slide-feature-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
            width: 100%;
            max-width: 300px;
            margin-top: 20px;
        }

        .feature-card {
            background: rgba(255,255,255,0.65);
            border: 1px solid rgba(241,87,33,0.15);
            border-radius: 12px;
            padding: 14px 12px;
            text-align: center;
            transition: background 0.2s ease, border-color 0.2s ease;
        }

        .feature-card:hover {
            background: rgba(255,255,255,0.90);
            border-color: rgba(241,87,33,0.35);
        }

        .feature-card-ico {
            font-size: 22px;
            margin-bottom: 6px;
            display: block;
        }

        .feature-card-label {
            font-size: 11px;
            font-weight: 600;
            color: #8a4020;
            line-height: 1.3;
        }

        /* ── Slide 3: Mobile mockup ── */
        .slide-mobile-wrap {
            position: relative;
            margin-bottom: 20px;
        }

        .slide-mobile-wrap img {
            max-height: 260px;
            width: auto;
            filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
            border-radius: 18px;
            animation: floatImg 5s ease-in-out infinite 1s;
        }

        .mobile-glow {
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 160px;
            height: 40px;
            background: radial-gradient(ellipse, rgba(241,87,33,0.35) 0%, transparent 70%);
            pointer-events: none;
        }

        /* ── Dots navigation ── */
        .carousel-dots {
            position: absolute;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
        }

        .carousel-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(180,80,30,0.25);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .carousel-dot.active {
            background: #f15721;
            width: 22px;
            border-radius: 3px;
        }

        /* ── Progress bar ── */
        .carousel-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #f15721, #ff9a70);
            border-radius: 0 2px 2px 0;
            z-index: 10;
            width: 0%;
            transition: width 0.1s linear;
        }

        /* ─── Right form panel ──────────────────────────────── */
        .col-lg-6.col-12.p-0 {
            flex: 0 0 50% !important;
            max-width: 50% !important;
            display: flex !important;
            flex-direction: column !important;
        }

        .col-lg-6.col-12.p-0 > .card {
            flex: 1 !important;
            display: flex !important;
            flex-direction: column !important;
            border-radius: 0 !important;
            border: none !important;
            box-shadow: none !important;
            margin: 0 !important;
        }

        .card-header {
            background: #fff !important;
            border-bottom: 2px solid #f0f0f0 !important;
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            gap: 12px !important;
        }

        .card-header img {
            height: 64px !important;
            width: auto !important;
            display: block !important;
        }

        .card-title {
            width: 100%;
            text-align: center;
        }

        .card-title h4 {
            font-size: 18px !important;
            font-weight: 700 !important;
            color: #111 !important;
            letter-spacing: -0.3px !important;
            margin: 0 !important;
        }

        /* ── Firma bilgi kartı (login; yalnızca ilgili firmada doldurulur) ── */
        .login-firma {
            background: var(--primary-pale);
            border: 1px solid rgba(241,87,33,0.25);
            border-radius: var(--radius-sm);
            padding: 12px 14px;
            margin-bottom: 18px;
        }
        .login-firma .lf-ad { font-size: 14px; font-weight: 700; color: #b83e10; margin-bottom: 6px; }
        .login-firma .lf-row { display: flex; align-items: flex-start; gap: 7px; font-size: 12.5px;
            color: #8a4020; font-weight: 500; line-height: 1.45; margin-top: 3px; }
        .login-firma .lf-row svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 2px; color: #f15721; }

        /* ─── Card body ──────────────────────────────────────── */
        .card-content {
            flex: 1;
            background: #fff;
        }

        .card-body {
            padding: 24px 32px 20px !important;
            background: #fff !important;
        }

        /* ─── Language selector ──────────────────────────────── */
        .language-selector {
            display: flex;
            gap: 8px;
            margin-bottom: 20px;
        }

        .lang-btn {
            height: 34px !important;
            padding: 0 14px !important;
            border: 1.5px solid #e3e3e3 !important;
            background: #fafafa !important;
            border-radius: var(--radius-sm) !important;
            cursor: pointer !important;
            font-family: var(--font) !important;
            font-size: 12px !important;
            font-weight: 700 !important;
            color: #999 !important;
            letter-spacing: 0.8px !important;
            transition: all var(--ease) !important;
        }

        .lang-btn:hover,
        .lang-btn.active {
            border-color: var(--primary) !important;
            color: var(--primary) !important;
            background: var(--primary-pale) !important;
        }

        /* ─── Field groups ────────────────────────────────────── */
        .field-group {
            margin-bottom: 16px;
        }

        .field-label {
            display: block;
            font-size: 12.5px;
            font-weight: 600;
            color: #555;
            margin-bottom: 6px;
            letter-spacing: 0.1px;
        }

        .field-wrap {
            position: relative;
        }

        .field-ico {
            position: absolute;
            left: 13px;
            top: 50%;
            transform: translateY(-50%);
            width: 16px;
            height: 16px;
            color: #b8b8b8;
            pointer-events: none;
            flex-shrink: 0;
            transition: color var(--ease);
        }

        .field-wrap:focus-within .field-ico {
            color: var(--primary);
        }

        /* ─── Inputs ─────────────────────────────────────────── */
        .form-control {
            display: block !important;
            width: 100% !important;
            height: 46px !important;
            padding: 0 14px 0 44px !important;
            border: 1.5px solid #e3e3e3 !important;
            border-radius: var(--radius-sm) !important;
            background: #fafafa !important;
            font-family: var(--font) !important;
            font-size: 14px !important;
            color: #111 !important;
            box-sizing: border-box !important;
            transition: border-color var(--ease), box-shadow var(--ease), background var(--ease) !important;
            outline: none !important;
        }

        .form-control::placeholder {
            color: #c0c0c0 !important;
            font-weight: 400;
        }

        .form-control:focus {
            border-color: var(--primary) !important;
            background: #fff !important;
            box-shadow: 0 0 0 3px var(--primary-glow) !important;
        }

        .form-control:hover:not(:focus) {
            border-color: #c8c8c8 !important;
            background: #fff !important;
        }

        /* ─── Captcha area ────────────────────────────────────── */
        .cap-label {
            display: block;
            font-size: 12.5px;
            font-weight: 600;
            color: #555;
            margin-bottom: 6px;
            letter-spacing: 0.1px;
        }

        .dxcp-challengeImage {
            border-radius: 6px !important;
            overflow: hidden !important;
        }

        .dxcp table {
            max-width: 100% !important;
        }

        /* ─── Mid row ─────────────────────────────────────────── */
        .mid-row {
            display: flex !important;
            align-items: center !important;
            justify-content: space-between !important;
            flex-wrap: wrap !important;
            gap: 8px !important;
            margin: 14px 0 18px !important;
        }

        .chk-label {
            display: flex;
            align-items: center;
            gap: 7px;
            cursor: pointer;
            font-size: 13px;
            color: #555;
            font-weight: 500;
            user-select: none;
        }

        .chk-label input[type="checkbox"] {
            width: 16px;
            height: 16px;
            accent-color: var(--primary);
            cursor: pointer;
            flex-shrink: 0;
            margin: 0;
        }

        #linkForgot {
            font-size: 13px !important;
            font-weight: 600 !important;
            color: var(--primary) !important;
            text-decoration: none !important;
            transition: opacity var(--ease) !important;
        }

        #linkForgot:hover {
            opacity: 0.7 !important;
        }

        /* ─── Login button ────────────────────────────────────── */
        .btn-primary,
        button#btnGirisYap {
            display: block !important;
            width: 100% !important;
            height: 48px !important;
            border: none !important;
            border-radius: var(--radius-sm) !important;
            background: linear-gradient(135deg, var(--primary) 0%, #ff7a45 100%) !important;
            color: #fff !important;
            font-family: var(--font) !important;
            font-size: 15px !important;
            font-weight: 700 !important;
            cursor: pointer !important;
            letter-spacing: 0.1px !important;
            box-sizing: border-box !important;
            box-shadow: 0 4px 20px var(--primary-shadow) !important;
            transition: transform var(--ease), box-shadow var(--ease) !important;
            margin-top: 2px !important;
        }

        .btn-primary:hover,
        button#btnGirisYap:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 28px rgba(241,87,33,0.38) !important;
        }

        .btn-primary:active,
        button#btnGirisYap:active {
            transform: translateY(0) !important;
        }

        /* ─── Divider ─────────────────────────────────────────── */
        .guest-divider {
            display: flex;
            align-items: center;
            gap: 10px;
            margin: 20px 0 14px;
            font-size: 12px;
            color: #c0c0c0;
            font-weight: 500;
        }

        .guest-divider::before,
        .guest-divider::after {
            content: '';
            flex: 1;
            height: 1px;
            background: #eee;
        }

        /* ─── Guest button ────────────────────────────────────── */
        .btn-guest-wrap {
            margin-top: 0;
        }

        .btn-guest,
        a.btn-guest {
            display: flex !important;
            width: 100% !important;
            height: 46px !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 8px !important;
            border: 1.5px solid #e0e0e0 !important;
            border-radius: var(--radius-sm) !important;
            background: #fff !important;
            color: #555 !important;
            font-family: var(--font) !important;
            font-size: 13.5px !important;
            font-weight: 600 !important;
            text-decoration: none !important;
            cursor: pointer !important;
            box-sizing: border-box !important;
            transition: all var(--ease) !important;
        }

        .btn-guest:hover,
        a.btn-guest:hover {
            border-color: var(--primary) !important;
            color: var(--primary) !important;
            background: #fff8f5 !important;
        }

        .btn-guest svg {
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        .guest-hint {
            display: block;
            font-size: 11px;
            color: #c0c0c0;
            text-align: center;
            margin-top: 7px;
            font-weight: 400;
        }

        /* ─── Footer ─────────────────────────────────────────── */
        .login-footer {
            background: #fafafa !important;
            border-top: 1px solid #f0f0f0 !important;
            padding: 18px 32px !important;
        }

        .partner ul {
            display: flex !important;
            flex-wrap: wrap !important;
            list-style: none !important;
            padding: 0 !important;
            margin: 0 0 10px !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 16px !important;
        }

        .partner li {
            margin: 0 !important;
        }

        .partner img {
            height: 30px !important;
            width: auto !important;
            display: block !important;
            filter: grayscale(100%) opacity(0.38);
            transition: filter 0.25s ease;
        }

        .partner li:hover img {
            filter: grayscale(0%) opacity(1);
        }

        .login-footer p {
            font-size: 11.5px !important;
            color: #bbb !important;
            margin: 0 !important;
            text-align: center !important;
            font-weight: 400 !important;
        }

        .login-footer p a {
            color: var(--primary) !important;
            font-weight: 600 !important;
            text-decoration: none !important;
        }

        .vs-checkbox--check {
            background: var(--primary) !important;
        }

        /* ════════════════════════════════════════════════════════
           RESPONSIVE
           ════════════════════════════════════════════════════════ */
        @media (max-width: 991px) {
            body { padding: 16px; }
            .card.bg-authentication > .row.m-0 { flex-wrap: wrap !important; }
            .col-lg-6.d-lg-block { display: none !important; }
            .col-lg-6.col-12.p-0 { flex: 0 0 100% !important; max-width: 100% !important; }
            .col-xl-24 { max-width: 480px !important; }
            .card-header { padding: 22px 24px 16px !important; }
            .card-body { padding: 20px 24px 18px !important; }
            .login-footer { padding: 16px 24px !important; }
        }

        @media (max-width: 520px) {
            body { padding: 0 !important; align-items: flex-start !important; background: #fff !important; }
            .flexbox-container { min-height: 100vh; align-items: flex-start !important; padding: 0 !important; margin: 0 !important; }
            .col-xl-24 { max-width: 100% !important; padding: 0 !important; }
            .card.bg-authentication { border-radius: 0 !important; box-shadow: none !important; border: none !important; min-height: 100vh !important; }
            .card-header { padding: 22px 18px 16px !important; border-radius: 0 !important; }
            .card-header img { height: 46px !important; }
            .card-title h4 { font-size: 16px !important; }
            .card-body { padding: 18px 18px 14px !important; }
            .login-footer { padding: 14px 18px !important; border-radius: 0 !important; }
            .btn-primary, button#btnGirisYap { height: 50px !important; font-size: 15px !important; }
            .mid-row { flex-direction: column !important; align-items: flex-start !important; gap: 10px !important; }
        }

        @media (max-width: 380px) {
            .card-header img { height: 40px !important; }
            .form-control { font-size: 13px !important; }
            .card-body { padding: 16px 14px 12px !important; }
            .partner img { height: 24px !important; }
            .partner ul { gap: 10px !important; }
        }

        /* Global style.css'teki .form-control padding'ini ez — kullanıcı adı yazısı ikonla çakışmasın */
        .card-body .field-wrap .form-control {
            padding: 0 14px 0 44px !important;
            height: 46px !important;
            line-height: normal !important;
        }
    