:root {
    --pa-navy: #092d3b;
    --pa-navy-2: #0d3d4b;
    --pa-teal: #087f78;
    --pa-mint: #dff5ef;
    --pa-bg: #f2f6f5;
    --pa-card: #fff;
    --pa-ink: #15343e;
    --pa-muted: #71848a;
    --pa-line: #dfe9e8;
    --pa-red: #c94a4a;
    --pa-amber: #d58a25;
    --pa-green: #23866b;
    --pa-blue: #3477b9;
    --pa-shadow: 0 16px 42px rgba(9,45,59,.08);
}
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body.pa-body {
    margin: 0;
    color: var(--pa-ink);
    background: var(--pa-bg);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}
.pa-body a { color: inherit; text-decoration: none; }
.pa-body h1, .pa-body h2, .pa-body h3, .pa-body h4, .pa-body p { margin-top: 0; }
.pa-body input, .pa-body select, .pa-body textarea, .pa-body button { font-family: inherit; }
.pa-shell { display: flex; min-height: 100vh; }
.pa-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 1000;
    width: 260px;
    display: flex;
    flex-direction: column;
    color: #bdd0d3;
    background: var(--pa-navy);
    overflow-y: auto;
}
.pa-brand { min-height: 82px; display: flex; align-items: center; justify-content: space-between; padding: 14px 22px; border-bottom: 1px solid rgba(255,255,255,.09); }
.pa-brand img { width: auto; max-width: 180px; max-height: 52px; padding: 5px 8px; border-radius: 6px; background: #fff; }
.pa-sidebar-close { display: none; border: 0; color: #fff; background: transparent; }
.pa-workspace { display: flex; align-items: center; gap: 11px; margin: 18px 16px 8px; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.05); }
.pa-workspace-mark { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 9px; color: var(--pa-navy); background: #b9e36b; font-size: 12px; font-weight: 800; }
.pa-workspace small, .pa-workspace b { display: block; line-height: 1.3; }
.pa-workspace small { color: #77979d; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.pa-workspace b { color: #fff; font-size: 12px; }
.pa-nav { flex: 1; padding: 9px 12px 24px; }
.pa-nav-label { display: block; padding: 18px 12px 7px; color: #6f9197; font-size: 9px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.pa-nav a { position: relative; display: flex; align-items: center; gap: 12px; margin: 3px 0; padding: 10px 12px; border-radius: 8px; color: #b7cbcf; font-size: 12px; font-weight: 650; transition: color .18s, background .18s; }
.pa-nav a i { width: 20px; color: #75979c; font-size: 14px; text-align: center; }
.pa-nav a:hover { color: #fff; background: rgba(255,255,255,.07); }
.pa-nav a.active { color: #fff; background: var(--pa-teal); }
.pa-nav a.active i { color: #fff; }
.pa-nav a.active::before { content: ""; position: absolute; left: -12px; width: 3px; height: 22px; border-radius: 0 3px 3px 0; background: #b9e36b; }
.pa-sidebar-footer { display: flex; align-items: center; gap: 10px; margin: 14px; padding: 13px; border-radius: 9px; color: #9db7bb; background: rgba(255,255,255,.05); }
.pa-sidebar-footer i { color: #b9e36b; }
.pa-sidebar-footer b, .pa-sidebar-footer small { display: block; line-height: 1.3; }
.pa-sidebar-footer b { color: #d7e4e5; font-size: 10px; }
.pa-sidebar-footer small { font-size: 8px; }
.pa-sidebar-overlay { display: none; }
.pa-main { width: calc(100% - 260px); min-width: 0; margin-left: 260px; }
.pa-topbar { position: sticky; top: 0; z-index: 800; min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 13px 30px; border-bottom: 1px solid var(--pa-line); background: rgba(255,255,255,.95); backdrop-filter: blur(12px); }
.pa-topbar-left { display: flex; align-items: center; gap: 14px; }
.pa-topbar-left small { display: block; color: var(--pa-muted); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.pa-topbar-left h1 { margin: 1px 0 0; color: var(--pa-navy); font-size: 20px; line-height: 1.25; }
.pa-menu-button { display: none; width: 40px; height: 40px; border: 1px solid var(--pa-line); border-radius: 9px; background: #fff; }
.pa-topbar-actions, .pa-user { display: flex; align-items: center; }
.pa-topbar-actions { gap: 12px; }
.pa-icon-link { width: 40px; height: 40px; display: grid; place-items: center; border: 1px solid var(--pa-line); border-radius: 50%; color: var(--pa-navy); background: #fff; }
.pa-user { gap: 10px; padding-left: 13px; border-left: 1px solid var(--pa-line); }
.pa-avatar { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 10px; color: #fff; background: linear-gradient(145deg, var(--pa-teal), #0a5f66); font-weight: 800; }
.pa-user b, .pa-user small { display: block; line-height: 1.25; }
.pa-user b { color: var(--pa-navy); font-size: 11px; }
.pa-user small { color: var(--pa-muted); font-size: 9px; }
.pa-user > a { margin-left: 5px; color: var(--pa-muted); }
.pa-content { min-height: calc(100vh - 132px); padding: 30px; }
.pa-footer { display: flex; justify-content: space-between; gap: 20px; padding: 18px 30px; border-top: 1px solid var(--pa-line); color: var(--pa-muted); font-size: 9px; }
.pa-alert { display: flex; align-items: flex-start; gap: 9px; margin-bottom: 20px; padding: 13px 15px; border-radius: 9px; font-size: 12px; }
.pa-alert-success { color: #17604b; border: 1px solid #bde4d6; background: #e5f7f0; }
.pa-alert-error { color: #843e3e; border: 1px solid #efc5c5; background: #fff0f0; }
.pa-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 25px; margin-bottom: 24px; }
.pa-page-head small { display: block; margin-bottom: 4px; color: var(--pa-teal); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.pa-page-head h2 { margin: 0; color: var(--pa-navy); font-size: 26px; letter-spacing: -.025em; }
.pa-page-head p { margin: 5px 0 0; color: var(--pa-muted); font-size: 12px; }
.pa-page-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.pa-btn, .btn {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 7px;
    box-shadow: none;
    text-shadow: none;
    font-size: 11px;
    font-weight: 750;
    line-height: 1.2;
}
.pa-btn-primary, .btn-primary { color: #fff !important; border-color: var(--pa-teal); background: var(--pa-teal); }
.pa-btn-primary:hover, .btn-primary:hover { background: #066a65; }
.pa-btn-secondary, .btn { color: var(--pa-navy); border-color: var(--pa-line); background: #fff; }
.pa-btn-danger, .btn-danger { color: #fff !important; border-color: var(--pa-red); background: var(--pa-red); }
.btn-success { color: #fff !important; border-color: var(--pa-green); background: var(--pa-green); }
.btn-info { color: #fff !important; border-color: var(--pa-blue); background: var(--pa-blue); }
.pa-btn-sm, .btn-small { min-height: 30px; padding: 6px 9px; font-size: 9px; }
.pa-card, .box { margin-bottom: 22px; border: 1px solid var(--pa-line); border-radius: 12px; background: var(--pa-card); box-shadow: none; overflow: hidden; }
.pa-card-head, .box-header { min-height: 55px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 15px 18px; border: 0; border-bottom: 1px solid var(--pa-line); color: var(--pa-ink); background: #fff; }
.pa-card-head h3, .box-header h2 { margin: 0; color: var(--pa-navy); font-size: 14px; font-weight: 750; }
.box-header h2 i { margin-right: 8px; }
.box-header .box-icon { display: none; }
.pa-card-body, .box-content { padding: 18px; }
.pa-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.pa-stat-card { position: relative; min-height: 132px; display: flex; flex-direction: column; justify-content: space-between; padding: 20px; border: 1px solid var(--pa-line); border-radius: 12px; background: #fff; overflow: hidden; }
.pa-stat-card::after { content: ""; position: absolute; right: -24px; bottom: -35px; width: 100px; height: 100px; border-radius: 50%; background: var(--stat-tint, #eef7f5); }
.pa-stat-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; }
.pa-stat-top > span:first-child { color: var(--pa-muted); font-size: 10px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.pa-stat-icon { width: 37px; height: 37px; display: grid; place-items: center; border-radius: 9px; color: var(--stat-color, var(--pa-teal)); background: var(--stat-tint, var(--pa-mint)); }
.pa-stat-value { position: relative; z-index: 1; color: var(--pa-navy); font-size: 29px; font-weight: 800; line-height: 1; }
.pa-stat-card small { position: relative; z-index: 1; color: var(--pa-muted); font-size: 9px; }
.pa-stat-card.is-amber { --stat-color: var(--pa-amber); --stat-tint: #fff3dc; }
.pa-stat-card.is-red { --stat-color: var(--pa-red); --stat-tint: #ffebeb; }
.pa-stat-card.is-blue { --stat-color: var(--pa-blue); --stat-tint: #e8f2fc; }
.pa-dashboard-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; }
.pa-dashboard-stack { display: grid; gap: 20px; }
.pa-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; padding: 14px; border: 1px solid var(--pa-line); border-radius: 10px; background: #fff; }
.pa-filter-form { display: flex; flex: 1; flex-wrap: wrap; gap: 8px; }
.pa-filter-form input, .pa-filter-form select { min-height: 38px; padding: 7px 10px; border: 1px solid var(--pa-line); border-radius: 7px; background: #fff; font-size: 11px; }
.pa-filter-form input { min-width: 230px; }
.pa-table-wrap, .table-responsive { width: 100%; overflow-x: auto; }
.pa-table, .table { width: 100%; margin: 0; border: 0; border-collapse: collapse; background: #fff; }
.pa-table th, .table th { padding: 10px 12px; border: 0; border-bottom: 1px solid var(--pa-line); color: #809197; background: #f8faf9; font-size: 8px; font-weight: 850; letter-spacing: .08em; text-align: left; text-transform: uppercase; white-space: nowrap; }
.pa-table td, .table td { padding: 12px; border: 0; border-bottom: 1px solid #edf2f1; color: #425b63; font-size: 10px; vertical-align: middle; }
.pa-table tr:last-child td, .table tr:last-child td { border-bottom: 0; }
.pa-table tbody tr:hover td, .table-striped tbody > tr:nth-child(odd) > td { background: #fbfdfc; }
.pa-table strong { display: block; color: var(--pa-navy); font-size: 11px; }
.pa-table small { color: var(--pa-muted); font-size: 8px; }
.pa-product-cell { display: flex; align-items: center; gap: 10px; min-width: 190px; }
.pa-product-cell img { width: 43px; height: 43px; object-fit: contain; border: 1px solid var(--pa-line); border-radius: 7px; background: #fff; }
.pa-badge, .label { display: inline-flex; align-items: center; gap: 5px; padding: 5px 8px; border-radius: 20px; color: #426068; background: #edf3f2; font-size: 8px; font-weight: 800; text-shadow: none; text-transform: capitalize; }
.pa-badge-new, .pa-badge-active, .label-success { color: #17604b; background: #dff5ed; }
.pa-badge-contacted, .pa-badge-processing { color: #245f8d; background: #e4f1fb; }
.pa-badge-qualified, .pa-badge-confirmed { color: #66521b; background: #fff2ce; }
.pa-badge-proposal { color: #6b4385; background: #f1e8f7; }
.pa-badge-won, .pa-badge-delivered { color: #17604b; background: #d9f2e8; }
.pa-badge-closed, .pa-badge-depleted { color: #66777c; background: #edf1f1; }
.pa-badge-expired, .pa-badge-urgent, .pa-badge-cancelled { color: #923d3d; background: #ffe8e8; }
.pa-badge-high, .pa-badge-quarantine, .pa-badge-dispatched { color: #8b5d16; background: #fff0d6; }
.pa-badge-low { color: #597078; background: #edf3f3; }
.pa-table-actions { display: flex; flex-wrap: wrap; gap: 5px; }
.pa-inline-form { display: flex; align-items: center; gap: 5px; margin: 0; }
.pa-inline-form select, .pa-inline-form input { min-width: 80px; height: 30px; margin: 0; padding: 4px 6px; border: 1px solid var(--pa-line); border-radius: 5px; font-size: 9px; }
.pa-empty { padding: 35px 20px !important; color: var(--pa-muted) !important; text-align: center; }
.pa-list { display: grid; gap: 0; }
.pa-list-item { display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 13px 0; border-bottom: 1px solid #edf2f1; }
.pa-list-item:last-child { border-bottom: 0; }
.pa-list-item > div:first-child { min-width: 0; }
.pa-list-item b, .pa-list-item small { display: block; }
.pa-list-item b { overflow: hidden; color: var(--pa-navy); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.pa-list-item small { margin-top: 2px; color: var(--pa-muted); font-size: 8px; }
.pa-progress { width: 80px; height: 5px; border-radius: 4px; background: #edf2f1; overflow: hidden; }
.pa-progress span { height: 100%; display: block; border-radius: inherit; background: var(--pa-teal); }
.pa-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pa-form-grid .span-all { grid-column: 1 / -1; }
.pa-field label, .control-label { display: block; margin-bottom: 6px; color: var(--pa-navy); font-size: 9px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.pa-field input, .pa-field select, .pa-field textarea,
.control-group input[type=text], .control-group input[type=email], .control-group input[type=password], .control-group input[type=date], .control-group input[type=number], .control-group input[type=file],
.control-group select, .control-group textarea {
    width: 100%;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--pa-line);
    border-radius: 7px;
    box-shadow: none;
    color: var(--pa-ink);
    background: #fff;
    font-size: 11px;
}
.pa-field textarea { min-height: 105px; resize: vertical; }
.pa-field input:focus, .pa-field select:focus, .pa-field textarea:focus,
.control-group input:focus, .control-group select:focus, .control-group textarea:focus { border-color: var(--pa-teal); box-shadow: 0 0 0 3px rgba(8,127,120,.09); outline: 0; }
.pa-field small { display: block; margin-top: 5px; color: var(--pa-muted); font-size: 8px; }
.pa-form-actions, .form-actions { display: flex; gap: 8px; margin: 20px 0 0; padding: 16px 0 0; border: 0; border-top: 1px solid var(--pa-line); background: transparent; }
.control-group { display: grid; grid-template-columns: 190px minmax(0, 1fr); gap: 16px; margin-bottom: 15px; }
.control-group .control-label { width: auto; padding-top: 10px; text-align: left; }
.control-group .controls { margin-left: 0; }
.control-group .controls .span6 { width: 100%; }
.row-fluid [class*="span"] { min-height: 0; }
#content.span10, #content { width: 100%; margin: 0; padding: 0; float: none; }
.row-fluid.sortable, .row-fluid { width: 100%; }
.breadcrumb { display: none; }
#result { margin-bottom: 12px; color: var(--pa-red); font-size: 11px; }
#result p { margin: 0; color: inherit; }
.dataTables_wrapper .row-fluid { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 10px; }
.dataTables_filter input, .dataTables_length select { width: auto; min-height: 32px; margin: 0 0 0 6px; padding: 5px 7px; border: 1px solid var(--pa-line); border-radius: 6px; font-size: 10px; }
.dataTables_info { color: var(--pa-muted); font-size: 9px; }
.pagination ul { box-shadow: none; }
.pagination ul > li > a, .pagination ul > li > span { padding: 6px 10px; border-color: var(--pa-line); font-size: 9px; }
.pa-modal { position: fixed; inset: 0; z-index: 1400; display: grid; place-items: center; padding: 20px; background: rgba(5,31,40,.6); opacity: 0; visibility: hidden; transition: .2s; }
.pa-modal.is-open { opacity: 1; visibility: visible; }
.pa-modal-dialog { width: min(680px, 100%); max-height: 90vh; border-radius: 13px; background: #fff; overflow-y: auto; box-shadow: 0 25px 70px rgba(0,0,0,.22); }
.pa-modal-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-bottom: 1px solid var(--pa-line); }
.pa-modal-head h3 { margin: 0; color: var(--pa-navy); font-size: 15px; }
.pa-modal-head button { border: 0; color: var(--pa-muted); background: transparent; }
.pa-modal-body { padding: 20px; }
.pa-callout { display: flex; gap: 12px; padding: 14px; border: 1px solid #d9e9e6; border-radius: 9px; color: #49656d; background: #f3faf8; font-size: 10px; }
.pa-callout i { color: var(--pa-teal); }
.pa-kpi-split { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pa-kpi-mini { padding: 14px; border: 1px solid var(--pa-line); border-radius: 9px; background: #fff; }
.pa-kpi-mini small, .pa-kpi-mini strong { display: block; }
.pa-kpi-mini small { color: var(--pa-muted); font-size: 8px; text-transform: uppercase; }
.pa-kpi-mini strong { margin-top: 4px; color: var(--pa-navy); font-size: 20px; }
.pa-expiry-expired { color: var(--pa-red) !important; font-weight: 750; }
.pa-expiry-soon { color: var(--pa-amber) !important; font-weight: 750; }

@media (max-width: 1180px) {
    .pa-stat-grid { grid-template-columns: 1fr 1fr; }
    .pa-dashboard-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .pa-sidebar { transform: translateX(-102%); transition: transform .25s; }
    .pa-sidebar-close, .pa-menu-button { display: block; }
    .pa-sidebar-open .pa-sidebar { transform: translateX(0); }
    .pa-sidebar-overlay { position: fixed; inset: 0; z-index: 900; display: block; background: rgba(4,28,36,.55); opacity: 0; visibility: hidden; transition: .2s; }
    .pa-sidebar-open .pa-sidebar-overlay { opacity: 1; visibility: visible; }
    .pa-main { width: 100%; margin-left: 0; }
    .pa-content { padding: 22px; }
    .pa-user > span:not(.pa-avatar) { display: none; }
    .pa-page-head { align-items: flex-start; flex-direction: column; }
    .pa-toolbar { align-items: flex-start; flex-direction: column; }
    .pa-filter-form { width: 100%; }
}
@media (max-width: 600px) {
    .pa-topbar { min-height: 70px; padding: 10px 15px; }
    .pa-topbar-left h1 { max-width: 190px; overflow: hidden; font-size: 15px; text-overflow: ellipsis; white-space: nowrap; }
    .pa-icon-link { display: none; }
    .pa-content { padding: 16px 12px; }
    .pa-stat-grid { grid-template-columns: 1fr; }
    .pa-page-head h2 { font-size: 22px; }
    .pa-page-actions { width: 100%; }
    .pa-page-actions .pa-btn { flex: 1; }
    .pa-filter-form { flex-direction: column; }
    .pa-filter-form input, .pa-filter-form select, .pa-filter-form .pa-btn { width: 100%; min-width: 0; }
    .pa-form-grid { grid-template-columns: 1fr; }
    .pa-form-grid .span-all { grid-column: auto; }
    .control-group { grid-template-columns: 1fr; gap: 3px; }
    .control-group .control-label { padding-top: 0; }
    .pa-footer { align-items: flex-start; flex-direction: column; padding: 16px; }
}

/* Secure login */
body.pa-login-body { min-height: 100vh; margin: 0; color: var(--pa-ink); background: #fff; font-family: Inter, "Segoe UI", Arial, sans-serif; }
.pa-login-shell { min-height: 100vh; display: grid; grid-template-columns: 1.05fr .95fr; }
.pa-login-brand {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 55px 7vw 35px;
    color: #fff;
    background:
        radial-gradient(circle at 85% 18%, rgba(185,227,107,.18), transparent 22%),
        radial-gradient(circle at 15% 85%, rgba(8,127,120,.26), transparent 32%),
        linear-gradient(135deg, #062b39, #0a4a55);
    overflow: hidden;
}
.pa-login-brand::before { content: ""; position: absolute; right: -160px; bottom: -160px; width: 500px; height: 500px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,255,255,.025), 0 0 0 130px rgba(255,255,255,.018); }
.pa-login-brand-content { position: relative; z-index: 1; max-width: 650px; }
.pa-login-brand-content > img { width: auto; max-width: 220px; max-height: 68px; margin-bottom: 80px; padding: 7px 10px; border-radius: 8px; background: #fff; }
.pa-login-eyebrow { display: block; margin-bottom: 18px; color: #b9e36b; font-size: 10px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.pa-login-brand h1 { max-width: 620px; margin: 0 0 22px; color: #fff; font-size: clamp(38px, 4.5vw, 64px); letter-spacing: -.045em; line-height: 1.08; }
.pa-login-brand p { max-width: 590px; color: #c8dadd; font-size: 15px; line-height: 1.7; }
.pa-login-features { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
.pa-login-features span { display: inline-flex; align-items: center; gap: 8px; padding: 9px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: 7px; color: #d7e5e6; background: rgba(255,255,255,.055); font-size: 9px; }
.pa-login-features i { color: #b9e36b; }
.pa-login-brand-footer { position: relative; z-index: 1; color: #91adb2; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.pa-login-brand-footer i { margin-right: 7px; color: #b9e36b; }
.pa-login-panel { display: grid; place-items: center; padding: 40px; background: #f5f8f7; }
.pa-login-card { width: min(430px, 100%); padding: 42px; border: 1px solid var(--pa-line); border-radius: 17px; background: #fff; box-shadow: var(--pa-shadow); }
.pa-login-mobile-logo { display: none; }
.pa-login-card > small { color: var(--pa-teal); font-size: 9px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.pa-login-card h2 { margin: 8px 0 9px; color: var(--pa-navy); font-size: 29px; letter-spacing: -.03em; }
.pa-login-card > p { margin-bottom: 28px; color: var(--pa-muted); font-size: 12px; }
.pa-login-field { margin-bottom: 17px; }
.pa-login-field label { display: block; margin-bottom: 7px; color: var(--pa-navy); font-size: 10px; font-weight: 750; }
.pa-login-field > span { display: flex; align-items: center; min-height: 48px; border: 1px solid var(--pa-line); border-radius: 8px; background: #fff; transition: border .2s, box-shadow .2s; }
.pa-login-field > span:focus-within { border-color: var(--pa-teal); box-shadow: 0 0 0 3px rgba(8,127,120,.09); }
.pa-login-field i { width: 45px; color: #8da0a5; text-align: center; }
.pa-login-field input { width: 100%; height: 46px; padding: 0 13px 0 0; border: 0; outline: 0; color: var(--pa-ink); background: transparent; font-size: 12px; }
.pa-login-submit { width: 100%; min-height: 48px; display: flex; align-items: center; justify-content: center; gap: 9px; margin-top: 24px; border: 0; border-radius: 8px; color: #fff; background: var(--pa-teal); box-shadow: 0 12px 26px rgba(8,127,120,.18); font-size: 11px; font-weight: 800; cursor: pointer; transition: transform .2s, background .2s; }
.pa-login-submit:hover { background: #066a65; transform: translateY(-2px); }
.pa-login-site-link { display: block; margin-top: 24px; color: var(--pa-muted); font-size: 9px; text-align: center; text-decoration: none; }
.pa-login-site-link:hover { color: var(--pa-teal); }

@media (max-width: 850px) {
    .pa-login-shell { grid-template-columns: 1fr; }
    .pa-login-brand { display: none; }
    .pa-login-panel { min-height: 100vh; padding: 24px; background: linear-gradient(150deg, #edf6f3, #f8faf9); }
    .pa-login-mobile-logo { display: block; margin-bottom: 28px; }
    .pa-login-mobile-logo img { max-width: 190px; max-height: 60px; }
}
@media (max-width: 480px) {
    .pa-login-panel { padding: 15px; }
    .pa-login-card { padding: 30px 22px; }
}
