:root{
    --v2-bg:#f4f7fb;
    --v2-card:#ffffff;
    --v2-text:#0f172a;
    --v2-text-soft:#64748b;
    --v2-border:rgba(15,23,42,.08);

    --v2-sidebar-bg:#0b1220;
    --v2-sidebar-bg-2:#121c31;
    --v2-sidebar-text:rgba(255,255,255,.88);
    --v2-sidebar-soft:rgba(255,255,255,.56);
    --v2-sidebar-hover:rgba(255,255,255,.06);
    --v2-sidebar-active:linear-gradient(135deg, rgba(115,103,240,.24), rgba(90,141,238,.16));

    --v2-primary:#7367f0;
    --v2-success:#28c76f;
    --v2-danger:#ea5455;
    --v2-warning:#ff9f43;
    --v2-info:#00cfe8;

    --v2-shadow:0 14px 28px rgba(15,23,42,.06);
    --v2-shadow-lg:0 22px 42px rgba(15,23,42,.10);
}

html, body{
    font-family:"Inter", sans-serif !important;
    background:var(--v2-bg) !important;
    color:var(--v2-text) !important;
}

.v2-admin-body{
    background:
        radial-gradient(circle at top left, rgba(115,103,240,.05), transparent 24%),
        radial-gradient(circle at bottom right, rgba(0,207,232,.04), transparent 18%),
        var(--v2-bg) !important;
}

.v2-shell{
    min-height:100vh;
    display:flex;
    background:transparent;
}

.v2-main{
    flex:1;
    min-width:0;
    display:flex;
    flex-direction:column;
    transition:all .25s ease;
}

/* SIDEBAR */
.v2-sidebar{
    width:290px;
    min-width:290px;
    max-width:290px;
    background:
        radial-gradient(circle at top left, rgba(115,103,240,.16), transparent 30%),
        radial-gradient(circle at bottom right, rgba(0,207,232,.08), transparent 25%),
        linear-gradient(180deg, var(--v2-sidebar-bg) 0%, var(--v2-sidebar-bg-2) 100%);
    border-right:1px solid rgba(255,255,255,.08);
    box-shadow:0 24px 40px rgba(2,6,23,.30);
    display:flex;
    flex-direction:column;
    position:sticky;
    top:0;
    height:100vh;
    z-index:100;
    transition:all .25s ease;
}

.v2-sidebar__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:18px 16px;
    border-bottom:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.02);
    backdrop-filter:blur(16px);
}

.v2-brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    min-width:0;
}

.v2-brand__logo{
    width:50px;
    height:50px;
    min-width:50px;
    border-radius:16px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 10px 22px rgba(0,0,0,.14);
}

.v2-brand__logo img{
    width:100%;
    height:100%;
    object-fit:contain;
    padding:6px;
}

.v2-brand__text{
    display:flex;
    flex-direction:column;
    min-width:0;
}

.v2-brand__text strong{
    color:#fff;
    font-size:15px;
    font-weight:800;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.v2-brand__text small{
    color:var(--v2-sidebar-soft);
    font-size:11px;
    text-transform:uppercase;
    letter-spacing:.7px;
}

.v2-sidebar__close{
    width:38px;
    height:38px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:none;
    align-items:center;
    justify-content:center;
}

.v2-sidebar__menu{
    padding:14px 10px 16px;
    overflow-y:auto;
    overflow-x:hidden;
}

.v2-sidebar__menu::-webkit-scrollbar{
    width:6px;
}

.v2-sidebar__menu::-webkit-scrollbar-thumb{
    background:rgba(255,255,255,.12);
    border-radius:999px;
}

.v2-nav{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.v2-nav__header{
    padding:12px 10px 6px;
    color:var(--v2-sidebar-soft);
    font-size:11px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.9px;
}

.v2-nav__item{
    list-style:none;
}

.v2-nav__link{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    width:100%;
    padding:11px 12px;
    border-radius:14px;
    color:var(--v2-sidebar-text) !important;
    text-decoration:none !important;
    border:1px solid transparent;
    transition:all .22s ease;
}

.v2-nav__link:hover{
    background:var(--v2-sidebar-hover);
    transform:translateX(2px);
}

.v2-nav__item.active > .v2-nav__link,
.v2-nav__item--dropdown.active > .v2-nav__link{
    background:var(--v2-sidebar-active);
    border-color:rgba(115,103,240,.18);
    box-shadow:inset 0 1px 0 rgba(255,255,255,.04);
}

.v2-nav__link-left{
    display:flex;
    align-items:center;
    gap:12px;
    min-width:0;
}

.v2-nav__icon{
    width:38px;
    height:38px;
    min-width:38px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.05);
    color:#dbeafe;
    font-size:18px;
}

.v2-nav__label{
    font-size:14px;
    font-weight:600;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}

.v2-nav__link-right{
    display:flex;
    align-items:center;
    gap:8px;
}

.v2-nav__alert-dot{
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--v2-warning);
    box-shadow:0 0 0 4px rgba(255,159,67,.16);
}

.v2-nav__arrow{
    color:var(--v2-sidebar-soft);
    transition:transform .2s ease;
}

.v2-nav__item--dropdown.active > .v2-nav__link .v2-nav__arrow{
    transform:rotate(90deg);
    color:#fff;
}

.v2-nav__count{
    min-width:22px;
    height:22px;
    padding:0 7px;
    border-radius:999px;
    background:rgba(0,207,232,.14);
    color:#7ee7f7;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:11px;
    font-weight:700;
    border:1px solid rgba(0,207,232,.18);
}

.v2-subnav{
    display:none;
    padding:4px 0 2px 50px;
}

.v2-subnav ul{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    flex-direction:column;
    gap:4px;
}

.v2-subnav__link{
    display:flex;
    align-items:center;
    gap:10px;
    padding:9px 12px;
    border-radius:12px;
    color:var(--v2-sidebar-soft) !important;
    text-decoration:none !important;
    border:1px solid transparent;
    transition:all .2s ease;
}

.v2-subnav__link:hover{
    background:rgba(255,255,255,.05);
    color:#fff !important;
    transform:translateX(2px);
}

.v2-subnav__item.active > .v2-subnav__link{
    background:rgba(255,255,255,.07);
    color:#fff !important;
    border-color:rgba(255,255,255,.05);
}

.v2-subnav__dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#91a4c3;
    flex-shrink:0;
}

.v2-subnav__item.active .v2-subnav__dot{
    background:#a5b4fc;
}

.v2-subnav__count{
    margin-left:auto;
    min-width:20px;
    height:20px;
    padding:0 6px;
    border-radius:999px;
    background:rgba(255,255,255,.08);
    color:#fff;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:10px;
    font-weight:700;
}

/* COLLAPSED DESKTOP */
.v2-shell--collapsed .v2-sidebar{
    width:92px;
    min-width:92px;
    max-width:92px;
}

.v2-shell--collapsed .v2-brand__text,
.v2-shell--collapsed .v2-nav__header,
.v2-shell--collapsed .v2-nav__label,
.v2-shell--collapsed .v2-nav__count,
.v2-shell--collapsed .v2-nav__arrow,
.v2-shell--collapsed .v2-nav__alert-dot,
.v2-shell--collapsed .v2-subnav{
    display:none !important;
}

.v2-shell--collapsed .v2-brand{
    justify-content:center;
}

.v2-shell--collapsed .v2-sidebar__top{
    justify-content:center;
}

.v2-shell--collapsed .v2-nav__link{
    justify-content:center;
    padding:11px 8px;
}

.v2-shell--collapsed .v2-nav__link-left{
    justify-content:center;
}

/* TOPBAR */
.v2-topbar{
    position:sticky;
    top:0;
    z-index:30;
    margin:18px 18px 0;
    padding:14px 18px;
    border-radius:20px;
    background:rgba(255,255,255,.80);
    backdrop-filter:blur(18px);
    border:1px solid var(--v2-border);
    box-shadow:var(--v2-shadow);
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
}

.v2-topbar__left{
    display:flex;
    align-items:center;
    gap:14px;
    min-width:0;
}

.v2-topbar__menu-btn{
    width:42px;
    height:42px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg, rgba(115,103,240,.14), rgba(90,141,238,.10));
    color:#5b6cf0;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    box-shadow:0 8px 18px rgba(115,103,240,.12);
}

.v2-topbar__title h5{
    margin:0;
    font-size:18px;
    font-weight:800;
    color:var(--v2-text);
    line-height:1.2;
}

.v2-topbar__title span{
    display:block;
    margin-top:2px;
    font-size:12px;
    color:var(--v2-text-soft);
}

.v2-topbar__right{
    display:flex;
    align-items:center;
    gap:10px;
}

.v2-profile-btn{
    border:none;
    background:#fff;
    border:1px solid var(--v2-border);
    border-radius:16px;
    padding:7px 10px 7px 8px;
    display:flex;
    align-items:center;
    gap:12px;
    box-shadow:var(--v2-shadow);
}

.v2-profile-btn__avatar{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:14px;
    overflow:hidden;
    border:2px solid rgba(115,103,240,.12);
}

.v2-profile-btn__avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.v2-profile-btn__meta{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}

.v2-profile-btn__meta strong{
    font-size:14px;
    font-weight:700;
    color:var(--v2-text);
    line-height:1.1;
}

.v2-profile-btn__meta small{
    margin-top:2px;
    font-size:11px;
    color:var(--v2-text-soft);
}

.v2-profile-dropdown{
    min-width:260px;
    margin-top:12px !important;
    border:none !important;
    border-radius:18px !important;
    overflow:hidden;
    background:#fff;
    box-shadow:var(--v2-shadow-lg);
    padding:0 !important;
}

.v2-profile-dropdown__head{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    background:linear-gradient(135deg, rgba(115,103,240,.10), rgba(0,207,232,.08));
    border-bottom:1px solid var(--v2-border);
}

.v2-profile-dropdown__avatar{
    width:48px;
    height:48px;
    border-radius:14px;
    overflow:hidden;
    flex-shrink:0;
}

.v2-profile-dropdown__avatar img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.v2-profile-dropdown__head h6{
    margin:0;
    font-size:14px;
    font-weight:700;
    color:var(--v2-text);
}

.v2-profile-dropdown__head span{
    display:block;
    margin-top:3px;
    font-size:12px;
    color:var(--v2-text-soft);
    word-break:break-word;
}

.v2-profile-dropdown__item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    color:var(--v2-text);
    text-decoration:none;
    border-bottom:1px solid rgba(15,23,42,.04);
    transition:.18s ease;
}

.v2-profile-dropdown__item:last-child{
    border-bottom:none;
}

.v2-profile-dropdown__item:hover{
    background:rgba(115,103,240,.06);
    color:#5b6cf0;
}

.v2-profile-dropdown__item--danger:hover{
    background:rgba(234,84,85,.08);
    color:var(--v2-danger);
}

/* CONTENT */
.v2-content{
    padding:18px;
}

.v2-content .breadcrumb-nav{
    background:#fff;
    border:1px solid var(--v2-border);
    border-radius:16px;
    padding:10px 14px;
    box-shadow:0 10px 24px rgba(15,23,42,.04);
    margin-bottom:16px;
}

.v2-content .card,
.v2-content .custom--card{
    border:none !important;
    border-radius:18px !important;
    box-shadow:var(--v2-shadow) !important;
}

/* MOBILE */
@media (max-width: 991px){
    .v2-sidebar{
        position:fixed;
        left:-100%;
        top:0;
        height:100vh;
        z-index:1050;
        transition:left .25s ease;
    }

    .v2-sidebar.show{
        left:0;
    }

    .v2-sidebar__close{
        display:inline-flex;
    }

    .v2-shell--collapsed .v2-sidebar{
        width:290px;
        min-width:290px;
        max-width:290px;
    }

    .v2-shell--collapsed .v2-brand__text,
    .v2-shell--collapsed .v2-nav__header,
    .v2-shell--collapsed .v2-nav__label,
    .v2-shell--collapsed .v2-nav__count,
    .v2-shell--collapsed .v2-nav__arrow,
    .v2-shell--collapsed .v2-nav__alert-dot,
    .v2-shell--collapsed .v2-subnav{
        display:initial !important;
    }

    .v2-topbar{
        margin:14px 14px 0;
        padding:12px 14px;
        border-radius:16px;
    }

    .v2-content{
        padding:14px;
    }
}

@media (max-width: 575px){
    .v2-topbar{
        flex-direction:column;
        align-items:stretch;
    }

    .v2-profile-btn__meta{
        display:none;
    }
}


/* =========================
   UNIVERSAL MODERN TABLE UI
========================= */

.v2-content .table-responsive,
.v2-content .table-responsive--md,
.v2-content .table-responsive--sm,
.v2-content .table-responsive--lg {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

/* works for .table, .table--light, style--two, normal bootstrap tables */
.v2-content table,
.v2-content .table,
.v2-content .table--light {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
}

/* THEAD */
.v2-content table thead th,
.v2-content .table thead th,
.v2-content .table--light thead th {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: #475569;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 15px 16px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    border-top: 0 !important;
    white-space: nowrap;
    vertical-align: middle;
}

/* TD + TH BODY */
.v2-content table tbody td,
.v2-content table tbody th,
.v2-content .table tbody td,
.v2-content .table tbody th,
.v2-content .table--light tbody td,
.v2-content .table--light tbody th {
    padding: 15px 16px;
    font-size: 14px;
    color: #0f172a;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
    border-top: 0 !important;
    vertical-align: middle !important;
    background: #fff;
    transition: background-color 0.18s ease;
}

/* TR hover */
.v2-content table tbody tr:hover td,
.v2-content table tbody tr:hover th,
.v2-content .table tbody tr:hover td,
.v2-content .table tbody tr:hover th,
.v2-content .table--light tbody tr:hover td,
.v2-content .table--light tbody tr:hover th {
    background: #f8fbff;
}

/* remove last border */
.v2-content table tbody tr:last-child td,
.v2-content table tbody tr:last-child th,
.v2-content .table tbody tr:last-child td,
.v2-content .table tbody tr:last-child th,
.v2-content .table--light tbody tr:last-child td,
.v2-content .table--light tbody tr:last-child th {
    border-bottom: 0 !important;
}

/* links inside table */
.v2-content table tbody td a,
.v2-content .table tbody td a,
.v2-content .table--light tbody td a {
    color: #4f46e5;
    font-weight: 600;
    text-decoration: none;
}

.v2-content table tbody td a:hover,
.v2-content .table tbody td a:hover,
.v2-content .table--light tbody td a:hover {
    color: #3730a3;
}

/* muted small text inside td */
.v2-content table tbody td small,
.v2-content table tbody td .small,
.v2-content .table tbody td small,
.v2-content .table tbody td .small,
.v2-content .table--light tbody td small,
.v2-content .table--light tbody td .small {
    color: #64748b !important;
    font-size: 12px;
    line-height: 1.5;
}

/* badges in table */
.v2-content table .badge,
.v2-content .table .badge,
.v2-content .table--light .badge {
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

/* buttons in table */
.v2-content table .btn,
.v2-content .table .btn,
.v2-content .table--light .btn {
    border-radius: 12px;
    font-weight: 600;
    box-shadow: none;
}

/* button groups */
.v2-content .button--group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* checkbox / inputs inside table */
.v2-content table .form-check-input,
.v2-content table .form-control,
.v2-content .table .form-check-input,
.v2-content .table .form-control,
.v2-content .table--light .form-check-input,
.v2-content .table--light .form-control {
    box-shadow: none !important;
}

/* empty row */
.v2-content table tbody td.text-muted.text-center,
.v2-content .table tbody td.text-muted.text-center,
.v2-content .table--light tbody td.text-muted.text-center {
    padding: 28px 16px;
    color: #94a3b8 !important;
    font-size: 14px;
    background: #fff;
}

/* striped optional look */
.v2-content table tbody tr:nth-child(even) td,
.v2-content table tbody tr:nth-child(even) th,
.v2-content .table tbody tr:nth-child(even) td,
.v2-content .table tbody tr:nth-child(even) th,
.v2-content .table--light tbody tr:nth-child(even) td,
.v2-content .table--light tbody tr:nth-child(even) th {
    background: #fcfdff;
}

.v2-content table tbody tr:nth-child(even):hover td,
.v2-content table tbody tr:nth-child(even):hover th,
.v2-content .table tbody tr:nth-child(even):hover td,
.v2-content .table tbody tr:nth-child(even):hover th,
.v2-content .table--light tbody tr:nth-child(even):hover td,
.v2-content .table--light tbody tr:nth-child(even):hover th {
    background: #f8fbff;
}

/* rounded first/last header corners */
.v2-content table thead th:first-child,
.v2-content .table thead th:first-child,
.v2-content .table--light thead th:first-child {
    border-top-left-radius: 18px;
}

.v2-content table thead th:last-child,
.v2-content .table thead th:last-child,
.v2-content .table--light thead th:last-child {
    border-top-right-radius: 18px;
}

/* more readable line-height */
.v2-content table td,
.v2-content table th,
.v2-content .table td,
.v2-content .table th,
.v2-content .table--light td,
.v2-content .table--light th {
    line-height: 1.45;
}

/* mobile */
@media (max-width: 991px) {
    .v2-content table thead th,
    .v2-content .table thead th,
    .v2-content .table--light thead th {
        font-size: 11px;
        padding: 13px 12px;
    }

    .v2-content table tbody td,
    .v2-content table tbody th,
    .v2-content .table tbody td,
    .v2-content .table tbody th,
    .v2-content .table--light tbody td,
    .v2-content .table--light tbody th {
        padding: 13px 12px;
        font-size: 13px;
    }

    .v2-content .button--group {
        gap: 6px;
    }
}

/* =========================
   V2 AUTH LOGIN
========================= */

.v2-auth{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    overflow:hidden;
}

/* background */
.v2-auth__bg{
    position:absolute;
    inset:0;
    z-index:0;
}

.v2-auth__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.6);
}

/* overlay */
.v2-auth__overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(115,103,240,.6), rgba(0,207,232,.4));
    z-index:1;
}

/* container */
.v2-auth__container{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1100px;
    padding:20px;
}

/* card */
.v2-auth__card{
    display:flex;
    border-radius:22px;
    overflow:hidden;
    backdrop-filter:blur(20px);
    background:rgba(255,255,255,.85);
    box-shadow:0 30px 80px rgba(0,0,0,.25);
}

/* LEFT */
.v2-auth__left{
    width:50%;
    padding:40px;
    background:linear-gradient(135deg, #7367f0, #5a8dee);
    color:#fff;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.v2-auth__left h2{
    font-size:28px;
    font-weight:800;
    margin-bottom:10px;
}

.v2-auth__left p{
    opacity:.9;
    margin-bottom:25px;
}

.v2-auth__features div{
    margin-bottom:10px;
    font-size:14px;
    opacity:.95;
}

/* RIGHT */
.v2-auth__right{
    width:50%;
    padding:40px;
    background:#fff;
}

/* header */
.v2-auth__header h4{
    font-size:22px;
    font-weight:800;
    margin-bottom:4px;
}

.v2-auth__header span{
    font-size:13px;
    color:#64748b;
}

/* form */
.v2-form{
    margin-top:20px;
}

.v2-form-group{
    margin-bottom:18px;
}

.v2-form-group label{
    font-size:13px;
    font-weight:600;
    margin-bottom:6px;
    display:block;
}

.v2-form-group input{
    width:100%;
    height:46px;
    border-radius:12px;
    border:1px solid #e2e8f0;
    padding:0 14px;
    font-size:14px;
    transition:all .2s;
}

.v2-form-group input:focus{
    border-color:#7367f0;
    box-shadow:0 0 0 3px rgba(115,103,240,.15);
    outline:none;
}

/* flex label */
.v2-form-flex{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.v2-form-flex a{
    font-size:12px;
    color:#7367f0;
    text-decoration:none;
}

/* button */
.v2-btn{
    width:100%;
    height:46px;
    border-radius:12px;
    border:none;
    background:linear-gradient(135deg, #7367f0, #5a8dee);
    color:#fff;
    font-weight:700;
    font-size:14px;
    transition:all .2s;
}

.v2-btn:hover{
    transform:translateY(-1px);
    box-shadow:0 10px 20px rgba(115,103,240,.3);
}

/* MOBILE */
@media (max-width: 991px){
    .v2-auth__card{
        flex-direction:column;
    }

    .v2-auth__left,
    .v2-auth__right{
        width:100%;
    }

    .v2-auth__left{
        padding:30px;
    }

    .v2-auth__right{
        padding:30px;
    }
}

/* =========================
   PREMIUM AUTH PAGE V2
========================= */

.v2-auth--premium{
    min-height:100vh;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    padding:28px;
}

.v2-auth__bg,
.v2-auth__overlay,
.v2-auth__mesh{
    position:absolute;
    inset:0;
}

.v2-auth__bg{
    z-index:0;
}

.v2-auth__bg img{
    width:100%;
    height:100%;
    object-fit:cover;
    filter:brightness(.45) saturate(1.05);
}

.v2-auth__overlay{
    z-index:1;
    background:
        linear-gradient(135deg, rgba(15,23,42,.78) 0%, rgba(30,41,59,.68) 38%, rgba(115,103,240,.38) 100%);
}

.v2-auth__mesh{
    z-index:2;
    background:
        radial-gradient(circle at 12% 18%, rgba(255,255,255,.12), transparent 18%),
        radial-gradient(circle at 85% 16%, rgba(0,207,232,.12), transparent 20%),
        radial-gradient(circle at 70% 78%, rgba(115,103,240,.14), transparent 22%);
    pointer-events:none;
}

.v2-auth__container{
    position:relative;
    z-index:3;
    width:100%;
    max-width:1180px;
}

.v2-auth-card{
    display:grid;
    grid-template-columns: 1.05fr .95fr;
    border-radius:28px;
    overflow:hidden;
    background:rgba(255,255,255,.82);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 30px 80px rgba(0,0,0,.28);
    min-height:680px;
}

.v2-auth-card__brand{
    position:relative;
    padding:44px;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,.20), transparent 24%),
        linear-gradient(145deg, rgba(25,34,58,.90) 0%, rgba(38,52,89,.84) 42%, rgba(88,91,199,.76) 100%);
    color:#fff;
    display:flex;
    align-items:center;
}

.v2-auth-card__brand-inner{
    max-width:520px;
}

.v2-auth-card__logo{
    width:88px;
    height:88px;
    border-radius:24px;
    background:rgba(255,255,255,.96);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:14px;
    box-shadow:0 18px 40px rgba(0,0,0,.22);
    margin-bottom:22px;
}

.v2-auth-card__logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.v2-auth-card__eyebrow{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:7px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.12);
    font-size:11px;
    font-weight:700;
    letter-spacing:.7px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.v2-auth-card__brand h1{
    font-size:38px;
    line-height:1.1;
    font-weight:800;
    margin:0 0 14px;
    color:#fff;
}

.v2-auth-card__brand p{
    margin:0;
    font-size:15px;
    line-height:1.75;
    color:rgba(255,255,255,.82);
    max-width:460px;
}

.v2-auth-card__feature-list{
    display:flex;
    flex-direction:column;
    gap:14px;
    margin-top:30px;
}

.v2-auth-card__feature{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:14px 16px;
    border-radius:18px;
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    backdrop-filter:blur(10px);
}

.v2-auth-card__feature-icon{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:14px;
    background:rgba(255,255,255,.14);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
}

.v2-auth-card__feature strong{
    display:block;
    font-size:14px;
    font-weight:700;
    margin-bottom:2px;
}

.v2-auth-card__feature small{
    display:block;
    color:rgba(255,255,255,.74);
    font-size:12px;
    line-height:1.5;
}

.v2-auth-card__form{
    background:rgba(255,255,255,.96);
    padding:48px 42px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.v2-auth-card__form-head{
    margin-bottom:24px;
}

.v2-auth-card__mobile-logo{
    display:none;
    width:64px;
    height:64px;
    border-radius:18px;
    background:#fff;
    border:1px solid rgba(15,23,42,.08);
    box-shadow:0 12px 26px rgba(15,23,42,.08);
    align-items:center;
    justify-content:center;
    padding:10px;
    margin-bottom:16px;
}

.v2-auth-card__mobile-logo img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.v2-auth-card__form-head h3{
    margin:0 0 8px;
    font-size:30px;
    line-height:1.15;
    font-weight:800;
    color:#0f172a;
}

.v2-auth-card__form-head p{
    margin:0;
    color:#64748b;
    font-size:14px;
    line-height:1.65;
}

.v2-auth-form{
    margin-top:6px;
}

.v2-auth-form__group{
    margin-bottom:18px;
}

.v2-auth-form__group label{
    display:block;
    margin-bottom:8px;
    font-size:13px;
    font-weight:700;
    color:#334155;
}

.v2-auth-form__label-row{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-bottom:8px;
}

.v2-auth-form__label-row label{
    margin-bottom:0;
}

.v2-auth-form__label-row a{
    color:#5b6cf0;
    text-decoration:none;
    font-size:12px;
    font-weight:600;
}

.v2-auth-form__input-wrap{
    position:relative;
}

.v2-auth-form__icon{
    position:absolute;
    left:14px;
    top:50%;
    transform:translateY(-50%);
    color:#94a3b8;
    font-size:18px;
    pointer-events:none;
}

.v2-auth-form__input-wrap input{
    width:100%;
    height:52px;
    border-radius:16px;
    border:1px solid #dbe3ee;
    background:#fff;
    padding:0 46px 0 46px;
    font-size:14px;
    color:#0f172a;
    transition:all .2s ease;
    box-shadow:0 6px 16px rgba(15,23,42,.03);
}

.v2-auth-form__input-wrap input::placeholder{
    color:#94a3b8;
}

.v2-auth-form__input-wrap input:focus{
    outline:none;
    border-color:#7367f0;
    box-shadow:0 0 0 4px rgba(115,103,240,.12);
}

.v2-auth-form__toggle{
    position:absolute;
    right:12px;
    top:50%;
    transform:translateY(-50%);
    width:30px;
    height:30px;
    border:none;
    background:transparent;
    color:#94a3b8;
    font-size:18px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.v2-auth-form__captcha{
    margin-top:4px;
    margin-bottom:20px;
}

.v2-auth-form__submit{
    width:100%;
    height:54px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg, #7367f0 0%, #5a8dee 100%);
    color:#fff;
    font-size:14px;
    font-weight:800;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    box-shadow:0 16px 30px rgba(115,103,240,.28);
    transition:all .22s ease;
}

.v2-auth-form__submit:hover{
    transform:translateY(-1px);
    box-shadow:0 18px 34px rgba(115,103,240,.34);
}

.v2-auth-form__submit i{
    font-size:18px;
}

@media (max-width: 1199px){
    .v2-auth-card{
        grid-template-columns: 1fr 1fr;
    }

    .v2-auth-card__brand{
        padding:36px;
    }

    .v2-auth-card__form{
        padding:40px 34px;
    }
}

@media (max-width: 991px){
    .v2-auth--premium{
        padding:18px;
    }

    .v2-auth-card{
        grid-template-columns:1fr;
        min-height:auto;
    }

    .v2-auth-card__brand{
        display:none;
    }

    .v2-auth-card__form{
        padding:28px 22px;
    }

    .v2-auth-card__mobile-logo{
        display:flex;
    }

    .v2-auth-card__form-head h3{
        font-size:26px;
    }
}

@media (max-width: 575px){
    .v2-auth-card{
        border-radius:22px;
    }

    .v2-auth-card__form{
        padding:24px 18px;
    }

    .v2-auth-card__form-head h3{
        font-size:24px;
    }

    .v2-auth-form__input-wrap input,
    .v2-auth-form__submit{
        height:50px;
        border-radius:14px;
    }
}