/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(7,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(8,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(9,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(11,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(12,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(13,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(14,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(15,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(16,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(17,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(18,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(19,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(20,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(37,17): run-time error CSS1039: Token not allowed after unary operator: '-auth-text'
(41,38): run-time error CSS1039: Token not allowed after unary operator: '-auth-bg-1'
(41,56): run-time error CSS1039: Token not allowed after unary operator: '-auth-bg-2'
(60,21): run-time error CSS1039: Token not allowed after unary operator: '-auth-container'
(135,33): run-time error CSS1039: Token not allowed after unary operator: '-auth-transition'
(135,67): run-time error CSS1039: Token not allowed after unary operator: '-auth-transition'
 */
:root {
    --auth-bg-1: #071a2f;
    --auth-bg-2: #0d2d50;
    --auth-panel: rgba(255, 255, 255, 0.94);
    --auth-panel-strong: rgba(255, 255, 255, 0.98);
    --auth-text: #11263d;
    --auth-muted: #627388;
    --auth-border: rgba(17, 38, 61, 0.12);
    --auth-primary: #0a66c2;
    --auth-primary-dark: #084d92;
    --auth-accent: #f1b500;
    --auth-success: #138a52;
    --auth-danger: #b42318;
    --auth-shadow-lg: 0 30px 70px rgba(4, 18, 34, 0.28);
    --auth-shadow-md: 0 16px 36px rgba(4, 18, 34, 0.16);
    --auth-radius-xl: 28px;
    --auth-radius-lg: 20px;
    --auth-radius-md: 14px;
    --auth-container: 1280px;
    --auth-transition: 180ms ease;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body.auth-body {
    font-family: "Inter", sans-serif;
    color: var(--auth-text);
    background:
        radial-gradient(circle at top left, rgba(241, 181, 0, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(10, 102, 194, 0.18), transparent 26%),
        linear-gradient(135deg, var(--auth-bg-1), var(--auth-bg-2));
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

.auth-topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(12px);
    background: rgba(6, 20, 36, 0.42);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.auth-topbar__container {
    max-width: var(--auth-container);
    margin: 0 auto;
    padding: 16px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.auth-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    flex-shrink: 1;
}

.auth-brand__logo {
    width: 54px!important;
    height: 54px!important;
    object-fit: contain!important;
}

.auth-brand__text {
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .auth-brand__logo {
        height: 42px;
        max-width: 180px;
    }

    .auth-brand__text {
        font-size: 0.95rem;
    }
}

@media (max-width: 640px) {
    .auth-brand__logo {
        height: 36px;
        max-width: 150px;
    }

    .auth-brand__text {
        display: none;
    }
}

.auth-topbar__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-topbar__link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

.auth-topbar__link:hover {
    color: #fff;
}

.auth-topbar__button {
    padding: 10px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.14);
    transition: background var(--auth-transition), transform var(--auth-transition);
}

.auth-topbar__button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.auth-page {
    padding: 34px 20px 40px;
}

@media (max-width: 640px) {
    .auth-topbar__container {
        padding: 14px 16px;
    }

    .auth-topbar__actions {
        gap: 8px;
    }

    .auth-topbar__link {
        display: none;
    }

    .auth-brand__text {
        font-size: 0.95rem;
    }

    .auth-page {
        padding: 22px 14px 28px;
    }
}
