/* ══════════════════════════════════════════
       DESIGN TOKENS
    ══════════════════════════════════════════ */
:root {
    --accent: #e8b84b;
    --accent-dark: #c9922e;
    --accent-light: #f5d07a;
    --accent-bg: rgba(232, 184, 75, .12);
    --accent-text: #b8862a;
    --navy: #0d1b2a;
    --navy-mid: #1a2e45;
    --navy-light: #243b55;
    --navy-subtle: #2e4a68;
    --sky: #ffffff;
    --sky-mid: #e2e2e2;
    --sky-light: #f7f7f7;
    --sky-subtle: rgba(77, 166, 255, .12);
    --transition: .28s ease;
    --radius: 16px;
    --font: 'Roboto', sans-serif;
}

[data-theme="light"] {
    --bg: #f0f4f9;
    --surface: #ffffff;
    --surface-2: #f7f9fc;
    --border: #e3e8f4;
    --border-2: #f0f4f9;
    --text: #1a2035;
    --text-muted: #6b7a99;
    --shadow: rgba(13, 27, 42, .09);
    --input-bg: #f4f7fd;
}

[data-theme="dark"] {
    --bg: #0a1120;
    --surface: #141e30;
    --surface-2: #1c2840;
    --border: #253348;
    --border-2: #1c2840;
    --text: #dde6f8;
    --text-muted: #6d88b0;
    --shadow: rgba(0, 0, 0, .4);
    --input-bg: #1c2840;
}

[data-accent="blue"] {
    --accent: #4da6ff;
    --accent-dark: #2880d4;
    --accent-light: #7bc0ff;
    --accent-bg: rgba(77, 166, 255, .12);
    --accent-text: #2880d4;
}

[data-accent="green"] {
    --accent: #27c98f;
    --accent-dark: #1da876;
    --accent-light: #5ddcae;
    --accent-bg: rgba(39, 201, 143, .12);
    --accent-text: #1da876;
}

[data-accent="purple"] {
    --accent: #a066f5;
    --accent-dark: #7c40c9;
    --accent-light: #c49bff;
    --accent-bg: rgba(160, 102, 245, .12);
    --accent-text: #7c40c9;
}

[data-accent="rose"] {
    --accent: #f4616e;
    --accent-dark: #d94450;
    --accent-light: #f99098;
    --accent-bg: rgba(244, 97, 110, .12);
    --accent-text: #d94450;
}

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

html {
    height: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    transition: background var(--transition), color var(--transition);
    overflow-x: hidden;
}

/* ══════════════════════════════════════════
       SPLIT LAYOUT
    ══════════════════════════════════════════ */
.auth-wrap {
    display: flex;
    width: 100%;
    min-height: 100vh;
}

/* ── LEFT PANEL ── */
.panel-left {
    width: 420px;
    flex-shrink: 0;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px 44px;
    position: relative;
    overflow: hidden;
}

/* Decorative background geometry */
.panel-left::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 184, 75, .14) 0%, transparent 70%);
    pointer-events: none;
}

.panel-left::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 184, 75, .09) 0%, transparent 70%);
    pointer-events: none;
}

/* Floating orbs */
.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: drift 8s ease-in-out infinite alternate;
}

.orb-1 {
    width: 180px;
    height: 180px;
    top: 25%;
    left: -40px;
    background: rgba(232, 184, 75, .05);
    animation-delay: 0s;
}

.orb-2 {
    width: 120px;
    height: 120px;
    top: 55%;
    right: -20px;
    background: rgba(77, 166, 255, .06);
    animation-delay: -3s;
}

.orb-3 {
    width: 80px;
    height: 80px;
    top: 10%;
    right: 30px;
    background: rgba(232, 184, 75, .08);
    animation-delay: -5s;
}

@keyframes drift {
    from {
        transform: translateY(0) scale(1);
    }

    to {
        transform: translateY(22px) scale(1.08);
    }
}

/* Grid dots pattern */
.dot-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.panel-left-inner {
    position: relative;
    z-index: 1;
}

/* Brand */
.auth-brand {
    display: flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
    margin-bottom: 60px;
}

.auth-brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    box-shadow: 0 8px 24px rgba(232, 184, 75, .3);
}

.auth-brand-name {
    font-family: var(--font);
    font-size: 1.55rem;
    color: #fff;
    letter-spacing: -.3px;
}

.auth-brand-name span {
    color: var(--accent);
}

/* Hero text */
.panel-hero {
    margin-bottom: 44px;
}

.panel-tagline {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(232, 184, 75, .13);
    border: 1px solid rgba(232, 184, 75, .22);
    color: var(--accent-light);
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.panel-tagline i {
    font-size: .75rem;
}

.panel-heading {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 14px;
}

.panel-heading em {
    font-style: italic;
    color: var(--accent-light);
}

.panel-desc {
    font-size: .875rem;
    color: rgba(255, 255, 255, .48);
    line-height: 1.65;
}

/* Stat pills */
.panel-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.stat-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    padding: 10px 14px;
    flex: 1;
    min-width: 100px;
}

.stat-pill-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.stat-pill-val {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
}

.stat-pill-lbl {
    font-size: .63rem;
    color: rgba(255, 255, 255, .38);
}

/* Testimonial */
.panel-quote {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-left: 3px solid var(--accent);
    border-radius: 12px;
    padding: 18px 20px;
}

.quote-text {
    font-size: .84rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quote-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: var(--sky);
    flex-shrink: 0;
}

.quote-name {
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
}

.quote-role {
    font-size: .67rem;
    color: rgba(255, 255, 255, .38);
}

/* ── RIGHT PANEL ── */
.panel-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    position: relative;
}

/* Top controls */
.auth-controls {
    position: absolute;
    top: 24px;
    right: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ctrl-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    border: 1.5px solid var(--border);
    background: var(--surface);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .88rem;
    transition: all .2s;
    position: relative;
}

.ctrl-btn:hover {
    border-color: var(--accent);
    color: var(--accent-text);
}

/* Theme dropdown */
.ctrl-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 12px 40px var(--shadow);
    z-index: 300;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .2s, transform .2s;
}

.ctrl-btn.open .ctrl-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.ctrl-drop-section {
    padding: 12px 14px;
    border-bottom: 1px solid var(--border);
}

.ctrl-drop-section:last-child {
    border-bottom: none;
}

.ctrl-drop-title {
    font-size: .6rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mode-btns {
    display: flex;
    gap: 6px;
}

.mode-btn {
    flex: 1;
    padding: 7px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
    background: var(--surface-2);
    color: var(--text-muted);
    font-size: .77rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all .2s;
    font-family: 'DM Sans', sans-serif;
}

.mode-btn.active {
    border-color: var(--accent);
    background: var(--accent-bg);
    color: var(--accent-text);
}

.swatches {
    display: flex;
    gap: 7px;
}

.swatch {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    border: 2.5px solid transparent;
    transition: all .2s;
    position: relative;
}

.swatch.active::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: #fff;
    font-weight: 700;
}

.swatch.active {
    border-color: var(--text);
    transform: scale(1.15);
}

/* Auth card */
.auth-card {
    width: 100%;
    max-width: 440px;
    animation: cardIn .5s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Tab switcher */
.auth-tabs {
    display: flex;
    background: var(--surface-2);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 28px;
    gap: 0;
}

.auth-tab {
    flex: 1;
    padding: 9px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: .84rem;
    font-weight: 600;
    border-radius: 9px;
    cursor: pointer;
    transition: all .25s;
    font-family: 'DM Sans', sans-serif;
    position: relative;
    z-index: 1;
}

.auth-tab.active {
    background: var(--surface);
    color: var(--text);
    box-shadow: 0 2px 8px var(--shadow);
}

/* Screen transition */
.auth-screen {
    display: none;
    animation: screenIn .35s ease both;
}

.auth-screen.visible {
    display: block;
}

@keyframes screenIn {
    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.screen-out {
    animation: screenOut .25s ease both;
}

@keyframes screenOut {
    to {
        opacity: 0;
        transform: translateX(-12px);
    }
}

/* Headers */
.auth-heading {
    font-family: var(--font);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.2;
}

.auth-sub {
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    line-height: 1.5;
}

.auth-sub a {
    color: var(--accent-text);
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}

.auth-sub a:hover {
    opacity: .8;
}

/* Role selector */
.role-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 22px;
}

.role-btn {
    flex: 1;
    padding: 11px 8px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--text-muted);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-family: 'DM Sans', sans-serif;
}

.role-btn i {
    font-size: 1.3rem;
}

.role-btn span {
    font-size: .75rem;
    font-weight: 600;
}

.role-btn.active {
    border-color: var(--accent);
    background: var(--accent-bg);
    color: var(--accent-text);
    box-shadow: 0 0 0 3px var(--accent-bg);
}

/* Form fields */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.input-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: .9rem;
    pointer-events: none;
    transition: color .2s;
}

.field {
    width: 100%;
    padding: 11px 14px 11px 40px;
    background: var(--input-bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    font-size: .875rem;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.field::placeholder {
    color: var(--text-muted);
}

.field:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-bg);
}

.field:focus~.input-icon,
.input-wrap:focus-within .input-icon {
    color: var(--accent-text);
}

.field-toggle {
    position: absolute;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: .9rem;
    cursor: pointer;
    transition: color .2s;
    background: none;
    border: none;
    padding: 2px;
}

.field-toggle:hover {
    color: var(--text);
}

/* Two-col row */
.row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media(max-width:400px) {
    .row-2 {
        grid-template-columns: 1fr;
    }
}

/* Password strength */
.strength-bar {
    display: flex;
    gap: 4px;
    margin-top: 8px;
}

.strength-seg {
    flex: 1;
    height: 3px;
    border-radius: 3px;
    background: var(--border);
    transition: background .3s;
}

.strength-label {
    font-size: .7rem;
    margin-top: 4px;
    font-weight: 600;
}

.str-0 .strength-label {
    color: var(--text-muted);
}

.str-1 .strength-seg:nth-child(1) {
    background: #f4616e;
}

.str-1 .strength-label {
    color: #f4616e;
}

.str-2 .strength-seg:nth-child(-n+2) {
    background: #f4a361;
}

.str-2 .strength-label {
    color: #f4a361;
}

.str-3 .strength-seg:nth-child(-n+3) {
    background: var(--accent);
}

.str-3 .strength-label {
    color: var(--accent-text);
}

.str-4 .strength-seg {
    background: #27c98f;
}

.str-4 .strength-label {
    color: #1da876;
}

/* Checkbox */
.check-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
}

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

.check-text {
    font-size: .8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.check-text a {
    color: var(--accent-text);
    font-weight: 600;
    text-decoration: none;
}

/* Error / success states */
.field-msg {
    font-size: .72rem;
    margin-top: 5px;
    display: none;
}

.field-msg.show {
    display: block;
}

.field-msg.error {
    color: #f4616e;
}

.field-msg.success {
    color: #27c98f;
}

.has-error .field {
    border-color: #f4616e;
}

.has-error .field:focus {
    box-shadow: 0 0 0 3px rgba(244, 97, 110, .12);
}

.has-success .field {
    border-color: #27c98f;
}

.has-success .field:focus {
    box-shadow: 0 0 0 3px rgba(39, 201, 143, .12);
}

/* Divider */
.divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--text-muted);
    font-size: .76rem;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

/* Social buttons */
.social-btns {
    display: flex;
    gap: 10px;
    margin-bottom: 6px;
}

.social-btn {
    flex: 1;
    padding: 10px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--surface-2);
    color: var(--text);
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
}

.social-btn:hover {
    border-color: var(--accent);
    background: var(--accent-bg);
    color: var(--accent-text);
}

.social-btn img {
    width: 16px;
    height: 16px;
}

/* Submit button */
.btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--sky);
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity .2s, transform .15s, box-shadow .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    box-shadow: 0 6px 24px rgba(232, 184, 75, .3);
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.btn-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
    opacity: 0;
    transition: opacity .2s;
}

.btn-submit:hover {
    opacity: .92;
    transform: translateY(-1px);
    box-shadow: 0 10px 32px rgba(232, 184, 75, .35);
}

.btn-submit:hover::after {
    opacity: 1;
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-submit.loading .btn-text {
    display: none;
}

.btn-submit .btn-spinner {
    display: none;
}

.btn-submit.loading .btn-spinner {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Spinner */
.spinner {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(13, 27, 42, .3);
    border-top-color: var(--navy);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Forgot password link */
.forgot-link {
    text-align: right;
    margin-bottom: 16px;
    margin-top: -8px;
}

.forgot-link a {
    font-size: .78rem;
    color: var(--accent-text);
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}

.forgot-link a:hover {
    opacity: .8;
}

/* OTP input */
.otp-wrap {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 24px;
}

.otp-input {
    width: 52px;
    height: 56px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    background: var(--input-bg);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    color: var(--text);
    font-family: 'DM Sans', sans-serif;
    outline: none;
    transition: border-color .2s, box-shadow .2s;
}

.otp-input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-bg);
}

/* Progress steps (register) */
.reg-steps {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 26px;
}

.reg-step {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
}

.rs-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all .3s;
}

.rs-dot.done {
    background: var(--accent);
    color: var(--navy);
}

.rs-dot.active {
    background: var(--surface);
    border: 2px solid var(--accent);
    color: var(--accent-text);
}

.rs-dot.pending {
    background: var(--surface-2);
    border: 2px solid var(--border);
    color: var(--text-muted);
}

.rs-label {
    font-size: .68rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-left: 7px;
    white-space: nowrap;
}

.rs-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    margin: 0 6px;
    transition: background .3s;
}

.rs-line.done {
    background: var(--accent);
}

@media(max-width:400px) {
    .rs-label {
        display: none;
    }
}

/* Footer note */
.auth-footer {
    text-align: center;
    font-size: .74rem;
    color: var(--text-muted);
    margin-top: 20px;
}

.auth-footer a {
    color: var(--accent-text);
    font-weight: 600;
    text-decoration: none;
}

/* Toast */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.custom-toast {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 13px 18px;
    box-shadow: 0 8px 32px var(--shadow);
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: .82rem;
    min-width: 220px;
    pointer-events: all;
    animation: slideIn .3s ease;
}

.custom-toast.out {
    animation: slideOut .3s ease forwards;
}

.custom-toast-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0;
}

.custom-toast.success .custom-toast-icon {
    background: rgba(39, 201, 143, .12);
    color: #1da876;
}

.custom-toast.error .custom-toast-icon {
    background: rgba(244, 97, 110, .12);
    color: #d94450;
}

.custom-toast.info .custom-toast-icon {
    background: var(--accent-bg);
    color: var(--accent-text);
}

.custom-toast-msg {
    flex: 1;
    color: var(--text);
    font-weight: 600;
}

.custom-toast-close {
    color: var(--text-muted);
    cursor: pointer;
    font-size: .85rem;
    padding: 2px;
    transition: color .15s;
}

.custom-toast-close:hover {
    color: var(--text);
}
@keyframes slideIn {
    from {
        transform: translateX(120%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast.out {
    animation: slideOut .3s ease forwards;
}

@keyframes slideOut {
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

.t-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .82rem;
    flex-shrink: 0;
}

.toast.success .t-icon {
    background: rgba(39, 201, 143, .12);
    color: #1da876;
}

.toast.error .t-icon {
    background: rgba(244, 97, 110, .12);
    color: #d94450;
}

.toast.info .t-icon {
    background: var(--accent-bg);
    color: var(--accent-text);
}

.t-msg {
    flex: 1;
    color: var(--text);
    font-weight: 500;
}

.t-close {
    color: var(--text-muted);
    cursor: pointer;
    font-size: .83rem;
    transition: color .15s;
}

.t-close:hover {
    color: var(--text);
}

/* Responsive */
@media (max-width: 860px) {
    .panel-left {
        display: none;
    }
}

@media (max-width: 480px) {
    .panel-right {
        padding: 56px 18px 28px;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}