/* =========================================================
   TITLE: GIRIŞ PANELİ ORTA CSS
   AÇIKLAMA: Giriş paneli sayfası orta alanı stil dosyası.
   ========================================================= */
#GirisPaneliOrtaIc { width: 100%; height: 100%; }
#GpInner { position: relative; width: 100%; height: 100%; display: flex; }
#GpSol { width: 50%; height: 100%; border-right: 1px solid  #cfe8dc; }
#GpSag { width: 50%; height: 100%; }
#GpSolInner { position: relative; width: 66%; height: 90%; left: 10%; top: 5%; background: url(giris_sol.png); background-size: 100% 100%; }
#GpSagInner { position: relative; width: 80%; height: 100%; left: 10%; background: transparent; display: flex; align-items: center; justify-content: center; }

#GpFormKart {
    position: relative;
    width: min(100%, 480px);
    max-width: 340px;
    margin: auto;
    padding: 36px;
    border: 1px solid var(--line, #cfe8dc);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(32,130,83,.15), 0 18px 55px rgba(15,23,42,.10);
    transform: scale(.95);
}

#GpDilSatiri {
    position: absolute;
    top: 18px;
    right: 24px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: .5px;
}

#GpDilTr {
    margin-right: 8px;
    color: #666666;
    text-decoration: none;
}

#GpDilEn {
    color: #666666;
    text-decoration: none;
}

#GpBaslik {
    font-size: 1em;
    font-weight: 600;
    line-height: 1.2;
    margin: 0 0 18px;
    color: var(--text, #0f172a);
}

#GpForm {
    width: 100%;
}

#GpEposta,
#GpSifre {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #cfe8dc;
    border-radius: 14px;
    background: #ffffff;
    font-size: 14px;
    outline: none;
}

#GpEposta:focus,
#GpSifre:focus {
    border-color: var(--accent, #208253);
    box-shadow: 0 0 0 2px rgba(32,130,83,.15);
}

#GpGirisButon,
#GpKayitOl {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
    border: none;
    cursor: pointer;
    transition: .2s ease;
    text-decoration: none;
    border-radius: 14px;
    margin-top: 10px;
    font-weight: 700;
    font-size: 14px;
}

#GpGirisButon {
    background: var(--accent, #208253);
    color: #ffffff;
}

#GpGirisButon:hover {
    transform: translateY(-1px);
    background: #17663f;
    box-shadow: 0 10px 24px rgba(32,130,83,.20);
}

#GpSifremiUnuttum {
    display: block;
    width: 100%;
    margin: 14px 0;
    padding: 10px;
    background: #475569;
    color: #ffffff;
    border-radius: 14px;
    text-align: center;
    text-decoration: none;
}

#GpSifremiUnuttum:hover {
    background: #334155;
}

#GpKayitOl {
    background: #2563eb;
    color: #ffffff;
}

#GpKayitOl:hover {
    background: #1e4fd8;
}

#GpAltImza {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

#GpMiniLogo {
    width: 32px;
    height: auto;
}

#GpImzaYazi {
    font-size: 14px;
    font-weight: 700;
    color: #334155;
}

@media (max-width: 900px) {
    #GpSagInner {
        width: 92%;
        left: 4%;
    }

    #GpFormKart {
        width: 100%;
        max-width: 380px;
        transform: none;
        padding: 26px;
    }
}


