:root {
    --tuam-navy: #182958;
    --tuam-navy-dark: #0a1028;
    --tuam-navy-mid: #121f45;
    --tuam-navy-light: #2a4480;
    --tuam-orange: #f68b29;
    --tuam-orange-dark: #e07a18;
    --tuam-orange-light: #ffb366;
    --tuam-cyan: #38bdf8;
    --tuam-panel-bg: #0b1228;
    --tuam-card-bg: rgba(14, 24, 52, 0.82);
    --tuam-card-border: rgba(255, 255, 255, 0.08);
    --tuam-text-light: #e8edf5;
    --tuam-muted-light: #8b9cb8;
    --tuam-bg: #0b1228;
    --tuam-white: #ffffff;
    --tuam-text: #e8edf5;
    --tuam-muted: #8b9cb8;
    --tuam-border: rgba(255, 255, 255, 0.1);
    --font: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --tuam-r: 10px;
    --tuam-control-h: 40px;
    --tuam-input-h: 46px;
    --tuam-space-xs: 0.5rem;
    --tuam-space-sm: 0.75rem;
    --tuam-space-md: 1rem;
    --tuam-space-lg: 1.35rem;
    --tuam-space-xl: 1.75rem;
}

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

html {
    -webkit-text-size-adjust: 100%;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: var(--font);
    color: var(--tuam-text);
    background: var(--tuam-panel-bg);
    overflow-x: hidden;
}

body.tuam-login-body {
    background: var(--tuam-panel-bg);
}

@media (max-width: 1024px) {
    html {
        overflow: hidden;
        height: 100%;
    }

    body.tuam-login-body {
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
        position: fixed;
        width: 100%;
        inset: 0;
    }

    .tuam-login-page {
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }
}

.tuam-login-page {
    min-height: 100dvh;
}

.tuam-login-shell {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    height: 100dvh;
    overflow: hidden;
}

/* ═══════════════════════════════════════
   BRAND PANEL — açık, akıcı layout
   ═══════════════════════════════════════ */
.tuam-login-brand {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 90% 70% at 10% 0%, rgba(246, 139, 41, 0.28) 0%, transparent 52%),
        radial-gradient(ellipse 70% 60% at 95% 100%, rgba(56, 189, 248, 0.18) 0%, transparent 55%),
        linear-gradient(155deg, #2a4480 0%, var(--tuam-navy) 42%, #1e3268 100%);
    color: var(--tuam-white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 3.5vw, 2.75rem);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.tuam-login-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.28;
}

.tuam-login-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(ellipse 95% 85% at 35% 45%, black 15%, transparent 78%);
    animation: tuamGridDrift 24s linear infinite;
    pointer-events: none;
}

.tuam-login-scanline {
    display: none;
}

.tuam-login-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    animation: tuamOrbPulse 12s ease-in-out infinite;
}

.tuam-login-orb--1 {
    width: 360px;
    height: 360px;
    background: var(--tuam-orange);
    top: -120px;
    right: -100px;
    opacity: 0.22;
}

.tuam-login-orb--2 {
    width: 280px;
    height: 280px;
    background: var(--tuam-cyan);
    bottom: 0;
    left: -90px;
    opacity: 0.14;
    animation-delay: -4s;
}

.tuam-login-orb--3 {
    width: 200px;
    height: 200px;
    background: #818cf8;
    top: 42%;
    right: 12%;
    opacity: 0.1;
    animation-delay: -7s;
}

@keyframes tuamGridDrift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

@keyframes tuamOrbPulse {
    0%, 100% { transform: scale(1) translateY(0); opacity: 0.28; }
    50% { transform: scale(1.08) translateY(-12px); opacity: 0.38; }
}

.tuam-brand-top,
.tuam-brand-content,
.tuam-brand-footer {
    position: relative;
    z-index: 2;
}

.tuam-brand-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
}

.tuam-brand-home {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    height: var(--tuam-control-h);
    padding: 0 1rem;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--tuam-r);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color 0.2s, background 0.2s, color 0.2s;
    box-sizing: border-box;
}

.tuam-brand-home:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
}

.tuam-system-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    height: var(--tuam-control-h);
    padding: 0 0.85rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    border-radius: var(--tuam-r);
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
    box-sizing: border-box;
}

.tuam-system-badge::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 8px #4ade80;
    animation: tuamPulse 2s ease-in-out infinite;
}

@keyframes tuamPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}

.tuam-brand-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: clamp(0.75rem, 2vh, 1.5rem) 0;
}

.tuam-brand-inner {
    width: 100%;
    max-width: 540px;
}

.tuam-brand-logos-line {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: var(--tuam-space-xl);
}

.tuam-brand-logos-line img {
    height: clamp(52px, 6vw, 64px);
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}

.tuam-brand-logos-line img.tuam-logo-circle {
    height: clamp(48px, 5.5vw, 58px);
    width: clamp(48px, 5.5vw, 58px);
    border-radius: var(--tuam-r);
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.tuam-brand-logo-sep {
    width: 1px;
    height: 52px;
    flex-shrink: 0;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.tuam-brand-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--tuam-orange-light);
    margin-bottom: 0.65rem;
}

.tuam-brand-title {
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 0.75rem;
    letter-spacing: -0.03em;
    color: #fff;
}

.tuam-brand-title span {
    display: block;
    margin-top: 0.25rem;
    background: linear-gradient(135deg, #fff 0%, var(--tuam-orange-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tuam-brand-desc {
    font-size: clamp(0.925rem, 1.2vw, 1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 34rem;
}

.tuam-brand-services {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: var(--tuam-space-lg);
}

.tuam-brand-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    border-radius: var(--tuam-r);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
    transition: background 0.2s, transform 0.2s;
}

.tuam-brand-pill i {
    color: var(--tuam-orange-light);
    font-size: 0.82rem;
}

.tuam-brand-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-1px);
}

.tuam-brand-points {
    list-style: none;
    margin: var(--tuam-space-xl) 0 0;
    padding: var(--tuam-space-lg) 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.tuam-brand-points li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.tuam-brand-points li > i {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.1rem;
    border-radius: var(--tuam-r);
    background: rgba(255, 255, 255, 0.1);
    color: var(--tuam-orange-light);
    font-size: 0.85rem;
}

.tuam-brand-points li div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.tuam-brand-points strong {
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.tuam-brand-points span {
    font-size: 0.8125rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.68);
}

.tuam-brand-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
    flex-wrap: wrap;
    padding-top: 0.5rem;
}

.tuam-brand-copy {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
}

.tuam-live-clock {
    text-align: right;
    font-variant-numeric: tabular-nums;
    padding: 0;
    background: none;
    border: none;
}

.tuam-clock-label {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.15rem;
}

.tuam-live-clock #saat-bolumu {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.tuam-live-clock #tarih-bolumu {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 0.1rem;
}

@media (max-height: 820px) and (min-width: 1025px) {
    .tuam-brand-logos-line {
        margin-bottom: var(--tuam-space-lg);
    }

    .tuam-brand-logos-line img {
        height: 48px;
    }

    .tuam-brand-logos-line img.tuam-logo-circle {
        height: 44px;
        width: 44px;
    }

    .tuam-brand-logo-sep {
        height: 44px;
    }

    .tuam-brand-services {
        margin-top: var(--tuam-space-md);
    }

    .tuam-brand-points {
        margin-top: var(--tuam-space-lg);
        padding-top: var(--tuam-space-md);
        gap: 0.75rem;
    }
}

/* ═══════════════════════════════════════
   FORM PANEL — koyu dijital tema
   ═══════════════════════════════════════ */
.tuam-login-form-panel {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 2.5vw, 2rem);
    background:
        radial-gradient(ellipse 80% 60% at 80% 15%, rgba(246, 139, 41, 0.12) 0%, transparent 55%),
        radial-gradient(ellipse 60% 50% at 10% 85%, rgba(56, 189, 248, 0.08) 0%, transparent 50%),
        linear-gradient(165deg, var(--tuam-navy-dark) 0%, var(--tuam-panel-bg) 45%, #0e1838 100%);
    overflow: hidden;
}

.tuam-form-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse 100% 90% at 50% 50%, black 15%, transparent 80%);
    animation: tuamGridDrift 24s linear infinite;
    pointer-events: none;
}

.tuam-form-bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.tuam-form-bg-orb--1 {
    width: 280px;
    height: 280px;
    background: var(--tuam-orange);
    top: -60px;
    right: -40px;
    opacity: 0.15;
}

.tuam-form-bg-orb--2 {
    width: 200px;
    height: 200px;
    background: var(--tuam-cyan);
    bottom: -40px;
    left: -30px;
    opacity: 0.08;
}

.tuam-login-mobile-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 460px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--tuam-space-md);
}

.tuam-mobile-home {
    display: none;
    align-items: center;
    justify-content: center;
    width: var(--tuam-control-h);
    height: var(--tuam-control-h);
    border-radius: var(--tuam-r);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    flex-shrink: 0;
}

.tuam-mobile-only {
    display: none;
}

.tuam-desktop-only {
    display: block;
}

.tuam-login-topbar {
    width: 100%;
    display: flex;
    align-items: center;
    gap: var(--tuam-space-sm);
    margin-bottom: 0;
    position: relative;
    z-index: 50;
    min-height: var(--tuam-control-h);
}

.tuam-topbar-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
    height: var(--tuam-control-h);
}

.tuam-ip-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    height: var(--tuam-control-h);
    min-height: var(--tuam-control-h);
    padding: 0 0.85rem;
    box-sizing: border-box;
    line-height: 1;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--tuam-muted-light);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--tuam-r);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex: 1;
    min-width: 0;
    overflow: hidden;
}

.tuam-ip-badge span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.tuam-ip-badge i {
    color: var(--tuam-orange);
    flex-shrink: 0;
}

.tuam-login-topbar.is-lang-open {
    z-index: 100;
}

.tuam-login-topbar.is-lang-open .tuam-lang-menu {
    z-index: 1000;
}

/* Google Translate — banner gizle, widget arka planda çalışsın */
.tuam-gtranslate-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    clip: rect(0, 0, 0, 0) !important;
}

.goog-te-banner-frame,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
#goog-gt-tt,
.goog-te-balloon-frame {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    width: 0 !important;
}

html.translated-ltr,
html.translated-rtl,
body.tuam-login-body {
    margin-top: 0 !important;
    top: 0 !important;
    position: static !important;
}

body > .skiptranslate.goog-te-banner-frame {
    display: none !important;
    height: 0 !important;
}

/* Özel dil seçici */
.tuam-lang-switcher {
    position: relative;
    flex-shrink: 0;
    z-index: 60;
}

.tuam-lang-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    height: var(--tuam-control-h);
    min-height: var(--tuam-control-h);
    padding: 0 0.85rem;
    box-sizing: border-box;
    line-height: 1;
    border-radius: var(--tuam-r);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--tuam-text-light);
    font-family: var(--font);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    -webkit-tap-highlight-color: transparent;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    white-space: nowrap;
}

.tuam-lang-trigger:hover,
.tuam-lang-trigger[aria-expanded="true"] {
    border-color: rgba(246, 139, 41, 0.45);
    background: rgba(246, 139, 41, 0.1);
}

.tuam-lang-flag {
    font-size: 1rem;
    line-height: 1;
}

.tuam-lang-chevron {
    font-size: 0.65rem;
    color: var(--tuam-muted);
    transition: transform 0.2s;
}

.tuam-lang-trigger[aria-expanded="true"] .tuam-lang-chevron {
    transform: rotate(180deg);
}

.tuam-lang-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 165px;
    background: rgba(14, 24, 52, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--tuam-r);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
    padding: 0.3rem;
    z-index: 999;
    animation: tuamMenuIn 0.2s var(--ease);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.tuam-lang-menu[hidden] {
    display: none;
}

@keyframes tuamMenuIn {
    from { opacity: 0; transform: translateY(-6px); }
    to { opacity: 1; transform: translateY(0); }
}

.tuam-lang-option {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    width: 100%;
    padding: 0.55rem 0.7rem;
    border: none;
    border-radius: var(--tuam-r);
    background: transparent;
    color: var(--tuam-text-light);
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.tuam-lang-option:hover {
    background: rgba(255, 255, 255, 0.06);
}

.tuam-lang-option.is-active {
    background: rgba(246, 139, 41, 0.15);
    color: var(--tuam-orange-light);
}

.tuam-login-portal {
    position: relative;
    width: 100%;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 0;
    isolation: isolate;
}

.tuam-login-card-wrap {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: var(--tuam-r);
    overflow: hidden;
    background: rgba(14, 24, 52, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.05) inset,
        0 24px 48px rgba(0, 0, 0, 0.32);
}

.tuam-login-card-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--tuam-orange-dark), var(--tuam-orange), var(--tuam-orange-light));
    z-index: 2;
}

.tuam-login-card {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    overflow: visible;
    border: none;
}

.tuam-portal-ring {
    display: none;
}

.tuam-login-card-hero {
    position: relative;
    padding: var(--tuam-space-xl) var(--tuam-space-lg) var(--tuam-space-lg);
    background: rgba(255, 255, 255, 0.025);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    text-align: center;
}

.tuam-hero-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--tuam-space-md);
}

.tuam-hero-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--tuam-space-md);
    text-align: center;
}

.tuam-login-medallion {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0;
    flex-shrink: 0;
}

.tuam-login-medallion img {
    width: 56px;
    height: 56px;
    border-radius: var(--tuam-r);
    object-fit: cover;
    border: 1px solid rgba(246, 139, 41, 0.45);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.tuam-medallion-pulse {
    display: none;
}

.tuam-login-card-header {
    margin-bottom: 0;
}

.tuam-login-card-header .tuam-card-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--tuam-orange);
    margin-bottom: 0.45rem;
}

.tuam-login-card-body {
    padding: var(--tuam-space-lg) var(--tuam-space-lg) var(--tuam-space-xl);
}

.tuam-login-card-header h1 {
    margin: 0 0 0.35rem;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.tuam-login-card-header p,
.tuam-hero-desc {
    margin: 0;
    font-size: 0.875rem;
    color: var(--tuam-muted-light);
    line-height: 1.5;
    max-width: 28rem;
}

.tuam-login-card-header .tuam-card-label {
    font-size: 0.68rem;
    margin-bottom: 0.45rem;
    letter-spacing: 0.1em;
}

.tuam-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.75rem 0.9rem;
    border-radius: var(--tuam-r);
    font-size: 0.8125rem;
    margin-bottom: var(--tuam-space-md);
    line-height: 1.5;
}

.tuam-alert--error i,
.tuam-alert--warning i,
.tuam-alert--lockout i {
    margin-top: 1px;
    flex-shrink: 0;
}

.tuam-alert--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.tuam-alert--warning {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #fcd34d;
}

.tuam-alert--lockout {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.tuam-alert--lockout strong {
    display: block;
    margin-bottom: 0.25rem;
}

.tuam-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.tuam-captcha-box {
    display: grid;
    gap: 0.65rem;
}

.tuam-captcha-question {
    display: inline-flex;
    align-items: center;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--tuam-orange-light);
    padding: 0.45rem 0.75rem;
    border-radius: var(--tuam-r);
    background: rgba(246, 139, 41, 0.1);
    border: 1px dashed rgba(246, 139, 41, 0.35);
}

.tuam-security-note {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    margin-top: var(--tuam-space-lg);
    padding: 0.75rem 0.9rem;
    border-radius: var(--tuam-r);
    font-size: 0.75rem;
    line-height: 1.5;
    color: var(--tuam-muted-light);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tuam-help-box {
    margin-top: var(--tuam-space-md);
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--tuam-r);
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--tuam-muted-light);
}

.tuam-help-box strong {
    color: #fff;
    font-size: 0.875rem;
}

.tuam-help-box a {
    color: var(--tuam-orange-light);
}

.tuam-field {
    margin-bottom: var(--tuam-space-md);
}

.tuam-field--premium .tuam-field-head {
    display: flex;
    align-items: center;
    margin-bottom: 0.45rem;
    gap: 0.5rem;
}

.tuam-field-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: var(--tuam-r);
    font-size: 0.6rem;
    font-weight: 700;
    background: rgba(246, 139, 41, 0.12);
    border: 1px solid rgba(246, 139, 41, 0.3);
    color: var(--tuam-orange-light);
    flex-shrink: 0;
}

.tuam-field--premium label {
    margin-bottom: 0;
}

.tuam-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    letter-spacing: 0.01em;
}

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

.tuam-input-wrap i.tuam-input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tuam-muted-light);
    font-size: 0.8rem;
    pointer-events: none;
    z-index: 2;
    transition: color 0.2s;
}

.tuam-input-wrap:focus-within i.tuam-input-icon {
    color: var(--tuam-orange);
}

.tuam-input-glow {
    display: none;
}

.tuam-input-wrap input {
    width: 100%;
    height: var(--tuam-input-h);
    padding: 0 2.75rem;
    font-family: var(--font);
    font-size: max(16px, 0.875rem);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--tuam-r);
    background: rgba(255, 255, 255, 0.045);
    transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
    position: relative;
    z-index: 1;
}

.tuam-input-wrap input::placeholder {
    color: rgba(139, 156, 184, 0.7);
}

.tuam-input-wrap input:focus {
    outline: none;
    border-color: rgba(246, 139, 41, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(246, 139, 41, 0.12);
}

.tuam-input-wrap input.is-invalid {
    border-color: rgba(239, 68, 68, 0.6);
    background: rgba(239, 68, 68, 0.08);
}

.tuam-toggle-password {
    position: absolute;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.35rem;
    border-radius: var(--tuam-r);
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: var(--tuam-muted-light);
    -webkit-tap-highlight-color: transparent;
}

.tuam-toggle-password:hover,
.tuam-toggle-password:focus-visible {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    outline: none;
}

.tuam-form-locked {
    opacity: 0.55;
    pointer-events: none;
}

.tuam-btn-login {
    width: 100%;
    height: 48px;
    margin-top: var(--tuam-space-sm);
    border: none;
    border-radius: var(--tuam-r);
    background: linear-gradient(135deg, var(--tuam-orange-dark) 0%, var(--tuam-orange) 50%, var(--tuam-orange-dark) 100%);
    background-size: 200% 200%;
    color: #fff;
    font-family: var(--font);
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(246, 139, 41, 0.3);
    transition: transform 0.15s, box-shadow 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.tuam-btn-login::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--tuam-r);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.tuam-btn-content {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    height: 100%;
}

.tuam-btn-shine {
    display: none;
}

.tuam-btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(246, 139, 41, 0.35);
}

.tuam-btn-login:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.tuam-login-page-footer {
    text-align: center;
    padding: var(--tuam-space-sm) 0 0;
    font-size: 0.75rem;
    color: var(--tuam-muted-light);
    width: 100%;
    line-height: 1.5;
    flex-shrink: 0;
}

.tuam-footer-help a {
    color: var(--tuam-orange-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.72rem;
}

.tuam-footer-copy {
    opacity: 0.6;
}

/* Google Translate widget gizli tutulur — özel seçici kullanılır */

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .tuam-login-shell {
        grid-template-columns: 1fr;
        height: 100dvh;
        max-height: 100dvh;
        overflow: hidden;
    }

    .tuam-login-brand {
        display: none;
    }

    .tuam-login-form-panel {
        height: 100dvh;
        max-height: 100dvh;
        min-height: 0;
        overflow: hidden;
        justify-content: stretch;
        align-items: stretch;
        padding:
            max(0.5rem, env(safe-area-inset-top))
            max(0.75rem, env(safe-area-inset-left))
            max(0.5rem, env(safe-area-inset-bottom))
            max(0.75rem, env(safe-area-inset-right));
    }

    .tuam-login-mobile-wrap {
        height: 100%;
        max-height: 100%;
        min-height: 0;
        flex: 1;
        align-self: center;
        width: 100%;
        max-width: 460px;
        justify-content: space-between;
        gap: 0.4rem;
        padding: 0;
        overflow: hidden;
    }

    .tuam-mobile-home {
        display: inline-flex;
    }

    .tuam-mobile-only {
        display: block;
    }

    .tuam-desktop-only {
        display: none !important;
    }

    .tuam-login-topbar {
        flex-shrink: 0;
    }

    .tuam-login-portal {
        flex: 1;
        min-height: 0;
        justify-content: center;
        overflow: hidden;
    }

    .tuam-login-card-wrap {
        max-height: 100%;
    }

    .tuam-login-card-hero {
        padding: 0.85rem 1rem 0.7rem;
    }

    .tuam-hero-stack {
        gap: 0.55rem;
    }

    .tuam-login-medallion,
    .tuam-login-medallion img {
        width: 46px;
        height: 46px;
    }

    .tuam-login-card-header .tuam-card-label {
        display: none;
    }

    .tuam-login-card-header h1 {
        font-size: 1.15rem;
        margin-bottom: 0.2rem;
    }

    .tuam-hero-desc {
        font-size: 0.78rem;
        line-height: 1.35;
    }

    .tuam-login-card-body {
        padding: 0.75rem 1rem 0.85rem;
    }

    .tuam-alert {
        padding: 0.55rem 0.7rem;
        margin-bottom: 0.55rem;
        font-size: 0.75rem;
    }

    .tuam-field {
        margin-bottom: 0.65rem;
    }

    .tuam-field--premium .tuam-field-head {
        margin-bottom: 0.35rem;
    }

    .tuam-input-wrap input {
        height: 44px;
    }

    .tuam-btn-login {
        height: 44px;
        margin-top: 0.35rem;
        font-size: 0.875rem;
    }

    .tuam-login-page-footer {
        flex-shrink: 0;
        padding: 0.25rem 0 0;
        font-size: 0.7rem;
    }

    .tuam-footer-help {
        display: block;
        margin-bottom: 0.1rem;
    }
}

@media (max-width: 480px) {
    .tuam-login-topbar {
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .tuam-ip-badge {
        font-size: 0.72rem;
        padding: 0 0.65rem;
        height: var(--tuam-control-h);
        min-height: var(--tuam-control-h);
        flex: 1;
        min-width: 0;
    }

    .tuam-lang-trigger {
        padding: 0 0.7rem;
        height: var(--tuam-control-h);
        min-height: var(--tuam-control-h);
        font-size: 0.75rem;
    }

    .tuam-lang-label {
        max-width: 4.5rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 360px) {
    .tuam-login-card-hero {
        padding: 0.7rem 0.85rem 0.55rem;
    }

    .tuam-login-card-body {
        padding: 0.6rem 0.85rem 0.7rem;
    }

    .tuam-login-medallion,
    .tuam-login-medallion img {
        width: 42px;
        height: 42px;
    }

    .tuam-login-card-header h1 {
        font-size: 1.05rem;
    }

    .tuam-field {
        margin-bottom: 0.5rem;
    }

    .tuam-field-step {
        width: 20px;
        height: 20px;
        font-size: 0.55rem;
    }

    .tuam-field label {
        font-size: 0.75rem;
    }
}

@media (max-height: 700px) and (max-width: 1024px) {
    .tuam-login-card-hero {
        padding: 0.6rem 0.85rem 0.5rem;
    }

    .tuam-hero-stack {
        gap: 0.4rem;
    }

    .tuam-login-medallion,
    .tuam-login-medallion img {
        width: 40px;
        height: 40px;
    }

    .tuam-login-card-header h1 {
        font-size: 1.05rem;
    }

    .tuam-hero-desc {
        font-size: 0.72rem;
    }

    .tuam-login-card-body {
        padding: 0.55rem 0.85rem 0.65rem;
    }

    .tuam-field {
        margin-bottom: 0.45rem;
    }

    .tuam-input-wrap input,
    .tuam-btn-login {
        height: 42px;
    }
}

@media (min-width: 1025px) {
    .tuam-login-mobile-wrap {
        max-width: 460px;
    }

    .tuam-login-card-body {
        padding: var(--tuam-space-lg) 1.5rem var(--tuam-space-xl);
    }

    .tuam-login-card-hero {
        padding: 2rem 1.5rem 1.35rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
