@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --au-teal: #00d4aa;
    --au-purple: #7c3aed;
    --au-pink: #ec4899;
    --au-blue: #3b82f6;
    --au-teal-soft: rgba(0, 212, 170, 0.15);
    --au-purple-soft: rgba(124, 58, 237, 0.15);
    --au-pink-soft: rgba(236, 72, 153, 0.12);
    --au-accent-grad: linear-gradient(135deg, #00d4aa 0%, #7c3aed 50%, #ec4899 100%);
    --au-accent-grad-2: linear-gradient(135deg, #7c3aed 0%, #3b82f6 100%);
    --au-trans: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="dark"] {
    --au-bg: #0b0b12;
    --au-bg-alt: #10101a;
    --au-card: rgba(18, 18, 30, 0.78);
    --au-card-border: rgba(124, 58, 237, 0.12);
    --au-card-glow: rgba(124, 58, 237, 0.06);
    --au-input-bg: rgba(255, 255, 255, 0.04);
    --au-input-border: rgba(255, 255, 255, 0.08);
    --au-input-focus: rgba(124, 58, 237, 0.25);
    --au-text: #e8e8f0;
    --au-text-sub: rgba(232, 232, 240, 0.55);
    --au-text-muted: rgba(232, 232, 240, 0.3);
    --au-placeholder: rgba(232, 232, 240, 0.2);
    --au-top-bar: rgba(11, 11, 18, 0.8);
    --au-tab-bg: rgba(255, 255, 255, 0.03);
    --au-tab-active: #e8e8f0;
    --au-tab-inactive: rgba(232, 232, 240, 0.35);
    --au-check-bg: rgba(124, 58, 237, 0.12);
    --au-check-border: rgba(124, 58, 237, 0.3);
    --au-select-bg: rgba(255, 255, 255, 0.04);
    --au-select-border: rgba(255, 255, 255, 0.08);
    --au-select-option: #1a1a2e;
    --au-footer-text: rgba(232, 232, 240, 0.15);
    --au-btn-text: #ffffff;
    --au-consent-text: rgba(232, 232, 240, 0.6);
}

[data-theme="light"] {
    --au-bg: #f0f0f5;
    --au-bg-alt: #e8e8f0;
    --au-card: rgba(255, 255, 255, 0.82);
    --au-card-border: rgba(124, 58, 237, 0.10);
    --au-card-glow: rgba(124, 58, 237, 0.04);
    --au-input-bg: rgba(0, 0, 0, 0.03);
    --au-input-border: rgba(0, 0, 0, 0.10);
    --au-input-focus: rgba(124, 58, 237, 0.15);
    --au-text: #1a1a2e;
    --au-text-sub: rgba(26, 26, 46, 0.55);
    --au-text-muted: rgba(26, 26, 46, 0.25);
    --au-placeholder: rgba(26, 26, 46, 0.2);
    --au-top-bar: rgba(240, 240, 245, 0.85);
    --au-tab-bg: rgba(0, 0, 0, 0.03);
    --au-tab-active: #1a1a2e;
    --au-tab-inactive: rgba(26, 26, 46, 0.35);
    --au-check-bg: rgba(124, 58, 237, 0.08);
    --au-check-border: rgba(124, 58, 237, 0.25);
    --au-select-bg: rgba(0, 0, 0, 0.03);
    --au-select-border: rgba(0, 0, 0, 0.10);
    --au-select-option: #ffffff;
    --au-footer-text: rgba(26, 26, 46, 0.2);
    --au-btn-text: #ffffff;
    --au-consent-text: rgba(26, 26, 46, 0.55);
}

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

html, body {
    width: 100%;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--au-bg);
    color: var(--au-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.aurora-wrap {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--au-bg);
}

.au-bg-gradient {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(0, 212, 170, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.04) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.au-bg-particles {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.08) 0%, transparent 100%),
        radial-gradient(1px 1px at 30% 60%, rgba(255,255,255,0.06) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(255,255,255,0.10) 0%, transparent 100%),
        radial-gradient(1px 1px at 70% 40%, rgba(255,255,255,0.06) 0%, transparent 100%),
        radial-gradient(1px 1px at 90% 80%, rgba(255,255,255,0.08) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 15% 85%, rgba(255,255,255,0.05) 0%, transparent 100%),
        radial-gradient(1px 1px at 60% 90%, rgba(255,255,255,0.07) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

.au-ambient-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.au-glow-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.10) 0%, transparent 70%);
    top: -150px; left: -100px;
    animation: auFloat 12s ease-in-out infinite alternate;
}

.au-glow-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.08) 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation: auFloat 15s ease-in-out infinite alternate-reverse;
}

.au-glow-3 {
    width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.06) 0%, transparent 70%);
    top: 40%; left: 60%;
    animation: auFloat 10s ease-in-out infinite alternate;
}

@keyframes auFloat {
    from { transform: translate(0, 0) scale(1); }
    to { transform: translate(40px, -20px) scale(1.1); }
}

.au-top-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 28px;
    z-index: 100;
    background: var(--au-top-bar);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--au-card-border);
}

.au-site-logo {
    height: 40px;
}

.au-top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.au-theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--au-card-border);
    background: var(--au-input-bg);
    color: var(--au-text-sub);
    cursor: pointer;
    transition: var(--au-trans);
}

.au-theme-toggle:hover {
    background: var(--au-card-glow);
    color: var(--au-text);
    border-color: var(--au-input-focus);
}

.au-theme-toggle .au-icon-sun { display: none; }
.au-theme-toggle .au-icon-moon { display: block; }

[data-theme="light"] .au-theme-toggle .au-icon-sun { display: block; }
[data-theme="light"] .au-theme-toggle .au-icon-moon { display: none; }

.au-lang-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: var(--au-input-bg);
    border: 1px solid var(--au-card-border);
    border-radius: 50px;
    padding: 6px 14px 6px 8px;
    transition: var(--au-trans);
    user-select: none;
}

.au-lang-toggle:hover {
    background: var(--au-card-glow);
    border-color: var(--au-input-focus);
}

.au-flag-img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    object-fit: cover;
}

.au-lang-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--au-text-sub);
    letter-spacing: 0.3px;
}

.au-login-center {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 440px;
    padding: 100px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.au-site-header {
    text-align: center;
}

.au-site-title {
    font-size: clamp(28px, 6vw, 42px);
    font-weight: 700;
    letter-spacing: -0.5px;
    background: var(--au-accent-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.au-site-tagline {
    font-size: 13px;
    color: var(--au-text-sub);
    margin-top: 8px;
    letter-spacing: 0.2px;
    line-height: 1.6;
    font-weight: 400;
}

.au-form-card {
    width: 100%;
    background: var(--au-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--au-card-border);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15), 0 0 0 1px var(--au-card-glow);
}

.au-form-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: var(--au-accent-grad);
    opacity: 0.6;
}

.au-tab-bar {
    display: flex;
    position: relative;
    background: var(--au-tab-bg);
    border-bottom: 1px solid var(--au-card-border);
    padding: 0 6px;
    gap: 2px;
}

.au-tab-btn {
    flex: 1;
    background: none;
    border: none;
    color: var(--au-tab-inactive);
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    padding: 14px 8px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.au-tab-btn.active { color: var(--au-tab-active); }
.au-tab-btn:hover { color: var(--au-text); }

.au-tab-indicator {
    position: absolute;
    bottom: -1px;
    height: 2px;
    background: var(--au-accent-grad);
    border-radius: 2px 2px 0 0;
    transition: left 0.38s cubic-bezier(0.4, 0, 0.2, 1), width 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.3);
    z-index: 3;
}

.au-forms-slider {
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.au-form-panel {
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 26px 28px;
    opacity: 0;
    transform: translateX(60px);
    pointer-events: none;
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.38s ease;
}

.au-form-panel.active {
    position: relative;
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
}

.au-form-group {
    margin-bottom: 16px;
}

.au-form-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--au-text-sub);
    margin-bottom: 7px;
}

.au-input-wrap {
    position: relative;
}

.au-input {
    width: 100%;
    background: var(--au-input-bg);
    border: 1px solid var(--au-input-border);
    border-radius: 10px;
    color: var(--au-text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 12px 16px;
    outline: none;
    transition: var(--au-trans);
    -webkit-appearance: none;
}

.au-input:focus {
    border-color: var(--au-purple);
    background: var(--au-input-bg);
    box-shadow: 0 0 0 3px var(--au-input-focus);
}

.au-input::placeholder {
    color: var(--au-placeholder);
}

.au-eye-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.2s;
    display: flex;
    align-items: center;
    color: var(--au-text-sub);
}

.au-eye-toggle:hover { opacity: 0.8; }
.au-eye-toggle svg { width: 16px; height: 16px; stroke: currentColor; }

.au-select {
    width: 100%;
    background: var(--au-select-bg);
    border: 1px solid var(--au-select-border);
    border-radius: 10px;
    color: var(--au-text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 11px 14px;
    outline: none;
    transition: var(--au-trans);
    -webkit-appearance: none;
    cursor: pointer;
}

.au-select:focus {
    border-color: var(--au-purple);
    box-shadow: 0 0 0 3px var(--au-input-focus);
}

.au-select option {
    background: var(--au-select-option);
    color: var(--au-text);
}

.au-form-row {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.au-form-col { flex: 1; }

.au-consent-row { margin-bottom: 18px; }

.au-consent-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.au-consent-check { display: none; }

.au-consent-box {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--au-check-border);
    border-radius: 5px;
    background: var(--au-check-bg);
    position: relative;
    transition: var(--au-trans);
    margin-top: 1px;
}

.au-consent-check:checked + .au-consent-box {
    background: var(--au-accent-grad);
    border-color: transparent;
    box-shadow: 0 0 8px rgba(124, 58, 237, 0.3);
}

.au-consent-check:checked + .au-consent-box::after {
    content: '✓';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -52%);
    font-size: 11px;
    color: #fff;
    font-weight: 700;
}

.au-consent-text {
    font-size: 12px;
    color: var(--au-consent-text);
    line-height: 1.5;
}

.au-submit-btn {
    width: 100%;
    background: var(--au-accent-grad);
    border: none;
    border-radius: 11px;
    color: var(--au-btn-text);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--au-trans);
    position: relative;
    overflow: hidden;
}

.au-submit-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.12) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.au-submit-btn:hover::before { opacity: 1; }

.au-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.35), 0 2px 8px rgba(0,0,0,0.2);
}

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

.au-submit-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    flex-shrink: 0;
}

.au-forgot-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-align: center;
    font-size: 12px;
    color: var(--au-text-sub);
    margin-top: 14px;
    cursor: pointer;
    transition: color 0.2s;
}

.au-forgot-link svg { width: 13px; height: 13px; stroke: currentColor; flex-shrink: 0; }
.au-forgot-link:hover { color: var(--au-purple); }

.au-rules-link {
    text-align: center;
    font-size: 12px;
    color: var(--au-text-sub);
    margin-top: 14px;
}

.au-rules-click {
    color: var(--au-purple);
    cursor: pointer;
    text-decoration: underline;
    margin-left: 4px;
}

.au-rules-click:hover { color: var(--au-pink); }

.au-active-users {
    width: 100%;
    text-align: center;
}

.au-active-label {
    font-size: 11px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--au-text-muted);
    margin-bottom: 14px;
    font-weight: 500;
}

.au-active-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.aurora-active-user {
    position: relative;
    cursor: pointer;
    transition: transform 0.25s ease;
}

.aurora-active-user:hover { transform: scale(1.1); }

.aurora-active-user .au-av-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 2px;
    background: var(--au-accent-grad);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.2);
}

.aurora-active-user img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: block;
    border: 2px solid var(--au-bg);
    object-fit: cover;
}

.aurora-active-user .au-av-dot {
    position: absolute;
    bottom: 2px; right: 2px;
    width: 10px; height: 10px;
    background: #22c55e;
    border-radius: 50%;
    border: 2px solid var(--au-bg);
}

.au-bridge-wrap {
    width: 100%;
    text-align: center;
}

.au-bridge-btn {
    max-width: 300px;
    margin: 0 auto;
}

.au-page-footer {
    position: relative;
    z-index: 10;
    width: 100%;
}

.au-page-footer .foot {
    text-align: center;
    padding: 20px 16px 28px;
}

.au-page-footer #menu_main_footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4px 14px;
}

.au-page-footer #menu_main_footer ul li {
    font-size: 11px;
    color: var(--au-footer-text);
    letter-spacing: 0.3px;
}

.au-page-footer #menu_main_footer ul li a {
    color: var(--au-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.au-page-footer #menu_main_footer ul li a:hover { color: var(--au-purple); }

.au-page-footer #menu_main_footer ul li.bclick {
    cursor: pointer;
    color: var(--au-text-muted);
}

.au-page-footer #menu_main_footer ul li.bclick:hover { color: var(--au-purple); }

.au-page-footer #menu_main_footer ul li .theme_color {
    color: var(--au-purple);
}

.au-page-footer #menu_main_footer ul li i {
    font-size: 11px;
    margin-right: 3px;
    color: var(--au-purple);
}

.cookie_wrap {
    position: fixed;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 9000;
    background: var(--au-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--au-card-border);
    border-radius: 14px;
    padding: 16px 20px;
    max-width: 760px;
    width: calc(100% - 40px);
    color: var(--au-text);
}

.cookie_wrap::before {
    content: '';
    position: absolute;
    top: 0; left: 15%; right: 15%;
    height: 1px;
    background: var(--au-accent-grad);
    opacity: 0.5;
}

.cookie_img {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie_img img {
    width: 32px;
    height: 32px;
    opacity: 0.6;
}

.cookie_text {
    flex: 1;
    min-width: 0;
}

.cookie_text .text_med.bold {
    font-size: 13px;
    font-weight: 600;
    color: var(--au-text);
    margin-bottom: 4px;
}

.cookie_text p:last-child {
    font-size: 12px;
    color: var(--au-text-sub);
    line-height: 1.5;
}

.cookie_text .link_like {
    color: var(--au-purple);
    text-decoration: underline;
    cursor: pointer;
}

.cookie_text .link_like:hover { color: var(--au-pink); }

.cookie_button { flex-shrink: 0; }

.cookie_button .ok_btn {
    background: var(--au-accent-grad);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 9px 22px;
    cursor: pointer;
    transition: var(--au-trans);
    white-space: nowrap;
}

.cookie_button .ok_btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(124, 58, 237, 0.30);
}

.back_modal {
    position: fixed;
    z-index: 8000;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.over_modal_in,
.small_modal_in {
    position: relative;
    width: 100%;
    background: var(--au-card);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--au-card-border);
    border-radius: 16px;
    overflow: hidden;
    color: var(--au-text);
    font-family: 'Inter', sans-serif;
}

.over_modal_in::before,
.small_modal_in::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: var(--au-accent-grad);
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.modal_close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--au-input-bg);
    border: 1px solid var(--au-card-border);
    cursor: pointer;
    transition: var(--au-trans);
    z-index: 10;
    color: var(--au-text-sub);
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal_close:hover {
    background: var(--au-card-glow);
    border-color: var(--au-input-focus);
    color: var(--au-text);
}

.modal_close .bcell_mid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 1;
}

.modal_close i {
    font-size: 12px;
    line-height: 1;
    display: block;
}

.modal_pad { padding: 22px 22px 20px; }

.modal_title {
    font-size: 17px;
    font-weight: 700;
    color: var(--au-text);
    letter-spacing: -0.2px;
    margin-bottom: 16px;
    padding-right: 34px;
}

.modal_title::after {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--au-accent-grad);
    margin-top: 6px;
    border-radius: 2px;
}

.over_modal_content,
.small_modal_content {
    max-height: 65vh;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--au-card-border) transparent;
}

.over_modal_content::-webkit-scrollbar,
.small_modal_content::-webkit-scrollbar { width: 4px; }

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

.over_modal_content::-webkit-scrollbar-thumb {
    background: var(--au-card-border);
    border-radius: 4px;
}

.text_box { padding-bottom: 2px; }

.text_title {
    font-size: 14px;
    font-weight: 700;
    color: var(--au-purple);
    margin-bottom: 8px;
    margin-top: 18px;
}

.text_title:first-child { margin-top: 0; }

.text_text {
    font-size: 13px;
    line-height: 1.65;
    color: var(--au-text-sub);
}

.modal_content { padding: 0; width: 100%; }

.modal_content .modal_content { margin-top: 2px; }

.modal_control { margin-top: 16px; }

.full_input {
    width: 100%;
    background: var(--au-input-bg);
    border: 1px solid var(--au-input-border);
    border-radius: 10px;
    color: var(--au-text);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    padding: 13px 16px;
    outline: none;
    transition: var(--au-trans);
    -webkit-appearance: none;
    box-sizing: border-box;
    display: block;
}

.full_input:focus {
    border-color: var(--au-purple);
    background: var(--au-input-bg);
    box-shadow: 0 0 0 3px var(--au-input-focus);
}

.full_input::placeholder { color: var(--au-placeholder); }

.full_button { width: 100%; }

.large_button.theme_btn,
.theme_btn.full_button {
    width: 100%;
    background: var(--au-accent-grad);
    border: none;
    border-radius: 11px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    padding: 13px 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--au-trans);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.large_button.theme_btn::before,
.theme_btn.full_button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.10) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.large_button.theme_btn:hover::before,
.theme_btn.full_button:hover::before { opacity: 1; }

.large_button.theme_btn:hover,
.theme_btn.full_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(124, 58, 237, 0.35), 0 2px 8px rgba(0,0,0,0.2);
}

.large_button.theme_btn:active,
.theme_btn.full_button:active { transform: translateY(0); }

@media (max-width: 520px) {
    .back_modal { padding: 12px; }
    .modal_pad { padding: 18px 16px 16px; }
    .modal_title { font-size: 16px; }
    .au-login-center { padding: 90px 14px 30px; }
    .au-form-panel { padding: 20px 18px; }
    .au-top-bar { padding: 12px 16px; }
    .au-form-row { flex-direction: column; gap: 0; }
    .cookie_wrap {
        text-align: center;
        padding: 18px 16px;
        gap: 12px;
    }
    .cookie_button { width: 100%; }
    .cookie_button .ok_btn { width: 100%; }
    #menu_main_footer ul { gap: 6px 10px; }
}

@media (max-width: 380px) {
    .au-site-title { font-size: 26px; }
    .au-tab-btn { font-size: 11px; padding: 12px 4px; }
}
