﻿:root {
    --bgA: #070a12;
    --bgB: #0b1630;
    --glass: rgba(255,255,255,.06);
    --border: rgba(255,255,255,.12);
    --text: #e5e7eb;
    --muted: #9aa7bd;
    --shadow: 0 24px 70px rgba(0,0,0,.55);
    --radius: 22px;
}

.login2-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
    color: var(--text);
    background: radial-gradient(900px 600px at 20% 20%, rgba(99,102,241,.25), transparent 60%), radial-gradient(900px 600px at 80% 70%, rgba(34,197,94,.16), transparent 60%), linear-gradient(135deg, var(--bgA), var(--bgB));
}

.login2-wrap {
    width: min(980px, 100%);
}

.login2-card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.04));
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

/* üst bar */
.login2-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 10px;
    border-bottom: 1px solid var(--border);
}

.login2-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.login2-brand img {
    width: 105px;
    height: 105px;
    /*border-radius: 33px;*/
    /*padding: 10px;*/
    /*background: rgba(255,255,255,.06);*/
    /*border: 1px solid var(--border);*/
    /*object-fit: contain;*/
}

.login2-brand-title {
    font-weight: 800;
    letter-spacing: .2px;
    font-size: 14px;
    line-height: 1.1;
}

.login2-brand-sub {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.login2-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* içerik */
.login2-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.login2-left {
    padding: 28px 28px 26px 28px;
    border-right: 1px solid var(--border);
    background: radial-gradient(600px 400px at 30% 30%, rgba(99,102,241,.15), transparent 60%);
}

.login2-right {
    padding: 28px 28px 26px 28px;
    background: radial-gradient(600px 400px at 70% 70%, rgba(34,197,94,.12), transparent 60%);
}

.login2-title {
    font-size: 26px;
    font-weight: 900;
    margin: 0 0 8px 0;
}

.login2-desc {
    color: var(--muted);
    font-size: 13px;
    margin: 0 0 16px 0;
    max-width: 52ch;
}

.login2-bullets {
    margin-top: 14px;
    display: grid;
    gap: 10px;
}

.login2-bullet {
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    padding: 12px 12px;
    border-radius: 16px;
    color: var(--muted);
    font-size: 13px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.login2-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    margin-top: 4px;
    background: rgba(255,255,255,.45);
}

.card-note {
    margin: 12px 0 14px 0;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,.05);
    color: var(--muted);
    font-size: 13px;
}

.login2-form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

    .login2-form-head h2 {
        margin: 0;
        font-size: 18px;
        font-weight: 900;
    }

    .login2-form-head p {
        margin: 6px 0 0 0;
        color: var(--muted);
        font-size: 13px;
    }

.divider {
    height: 1px;
    background: var(--border);
    margin: 14px 0;
}

.version-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 14px;
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 920px) {
    .login2-body {
        grid-template-columns: 1fr;
    }

    .login2-left {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }
}


/* iki satır da aynı layout: input + sağda sabit addon */
.login2-row {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 10px;
    align-items: stretch; /* yükseklik eşitlemek için kritik */
}

.login2-input {
    min-width: 0;
}

.login2-addon {
    align-self: stretch;
    display: flex;
}

/* username/password width 90% DEME → hizayı bozuyor, kaldır */
.username1, .password1 {
    width: 100%;
}

/* satır */
.pw-outside-row {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 10px;
    align-items: center; /* ✅ butonu dikeyde ortalar */
    /*padding:5px;*/
}

/* göz kolonunu da sabitle */
.pw-outside-eye {
    display: flex;
    align-items: center;
    justify-content: center;
}