/* Login — Tailwind'e bağımlı değil; tek başına çalışır */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }
body.login-page {
    font-family: "Source Sans 3", system-ui, sans-serif;
    color: #0f172a;
    background: #eef2ff;
}
.login-page-wrap {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background:
        radial-gradient(ellipse 60% 40% at 0% 0%, rgba(86, 88, 255, 0.14), transparent 55%),
        radial-gradient(ellipse 50% 40% at 100% 100%, rgba(253, 117, 113, 0.12), transparent 50%),
        #eef2ff;
}
.login-card {
    width: 100%;
    max-width: 980px;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 30px 70px -28px rgba(15, 23, 42, 0.35);
    border: 1px solid rgba(15, 23, 42, 0.06);
}
.login-brand {
    position: relative;
    padding: 48px 44px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(155deg, #1a1b4b 0%, #2d2f8f 45%, #5658ff 100%);
}
.login-brand::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 15%, rgba(253, 117, 113, 0.35), transparent 35%),
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.12), transparent 40%);
    pointer-events: none;
}
.login-brand > * { position: relative; z-index: 1; }
.login-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 30px -12px rgba(0, 0, 0, 0.35);
    margin-bottom: 36px;
}
.login-logo-wrap img {
    display: block;
    height: 42px;
    width: auto;
    max-width: 200px;
}
.login-eyebrow {
    margin: 0 0 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}
.login-brand h1 {
    margin: 0;
    font-family: Outfit, system-ui, sans-serif;
    font-size: 34px;
    line-height: 1.15;
    font-weight: 600;
    max-width: 360px;
}
.login-brand > div > p:not(.login-eyebrow) {
    margin: 14px 0 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
    max-width: 340px;
}
.login-chips {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 40px;
}
.login-chip {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.08);
    padding: 12px;
}
.login-chip span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}
.login-chip strong {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 600;
}
.login-panel {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8fafc;
}
.login-panel-inner { width: 100%; max-width: 380px; margin: 0 auto; }
.login-panel .login-eyebrow { color: #5658ff; }
.login-panel h2 {
    margin: 0;
    font-family: Outfit, system-ui, sans-serif;
    font-size: 30px;
    font-weight: 600;
    color: #0f172a;
}
.login-sub {
    margin: 8px 0 0;
    font-size: 14px;
    color: #64748b;
}
.login-form { margin-top: 28px; }
.login-field { margin-bottom: 16px; }
.login-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #334155;
}
.login-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #e2e8f0;
    background: #fff;
    border-radius: 14px;
    padding: 11px 14px;
    transition: border-color .15s, box-shadow .15s;
}
.login-input:focus-within {
    border-color: #5658ff;
    box-shadow: 0 0 0 4px rgba(86, 88, 255, 0.12);
}
.login-input svg { flex-shrink: 0; color: #5658ff; opacity: 0.75; }
.login-input input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font: inherit;
    font-size: 14px;
    color: #0f172a;
}
.login-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 6px 0 18px;
    font-size: 13px;
}
.login-row label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
}
.login-row a { color: #5658ff; font-weight: 600; text-decoration: none; }
.login-row a:hover { text-decoration: underline; }
.login-submit {
    width: 100%;
    border: 0;
    border-radius: 14px;
    padding: 14px 16px;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff !important;
    background-color: #5658ff !important;
    cursor: pointer;
    box-shadow: 0 12px 24px -10px rgba(86, 88, 255, 0.55);
}
.login-submit:hover { background-color: #4547e0 !important; }
.login-submit:disabled { opacity: 0.65; cursor: not-allowed; }
.login-footer {
    margin-top: 28px;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
}
.login-error {
    margin-bottom: 14px;
    border-radius: 14px;
    border: 1px solid #fecaca;
    background: #fef2f2;
    padding: 12px 14px;
    color: #991b1b;
    font-size: 13px;
}
.login-mobile-logo { display: none; text-align: center; margin-bottom: 20px; }
.login-mobile-logo img { height: 36px; width: auto; }
@media (max-width: 900px) {
    .login-card {
        grid-template-columns: 1fr;
        min-height: 0;
        max-width: 460px;
    }
    .login-brand { display: none; }
    .login-mobile-logo { display: block; }
    .login-panel { padding: 32px 24px; background: #fff; }
}
