* { box-sizing: border-box; margin: 0; padding: 0; font-family: sans-serif; }

.login-wrapper {
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Sol Taraf: Laptop Görsel Alanı */
.bg-illustration {
    flex: 1;
    background-color: #f0f2f5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.bg-illustration img {
        object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sağ Taraf: Form Konteynırı */
.login-container {
    width: 50%;
    min-width: 50%;
    background: #ffffff8f;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px;
    box-shadow: -10px 0 20px rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.logo { text-align: center; margin-bottom: 5px;     background: #fff;
    padding: 5px 5px;
    border-radius: 10px;}
.logo img { width: 150px; }
.logo p { font-size: 11px; color: #888; letter-spacing: 2px; margin-top: 5px; }

/* Input Tasarımları */
.input-group { position: relative; margin-bottom: 10px; }
.input-group i { position: absolute; left: 15px; top: 50%; transform: translateY(-50%); color: #f36f21; font-size: 22px; }
.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fdfdfd;
    outline: none;
    font-size: 15px;
}

.toggle-password { left: auto !important; right: 15px; color: #999 !important; cursor: pointer; }

/* Checkbox ve Linkler */
.form-options, .kvkk-check { display: flex; justify-content: space-between; align-items: start; font-size: 13px; margin-bottom: 10px;     flex-direction: column; }
.forgot-pass { color: #555; text-decoration: none; }
.kvkk-check a { font-weight: bold; color: #000; text-decoration: underline; }

/* Butonlar */
.btn { width: 100%; padding: 16px; border-radius: 10px; border: none; font-weight: bold; cursor: pointer; font-size: 15px; margin-bottom: 12px; transition: 0.3s; }
.btn-login { background: #1a77c6; color: #fff; }
.btn-login:hover { background: #07409e; color: #fff; }
.btn-register { background: #fff; color: #f36f21; border: 1px solid #f36f21; }

/* Footer Linkleri */
.login-footer .links {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    border-top: 1px solid #eee;
    padding-top: 10px;
    font-size: 11px;
}
.login-footer a { color: #000; text-decoration: none; }
.software-logo > img { 
    width: auto;
    height: 20px;
}

.login-footer a:hover { color: #fff; }


/* Siyah Powered Bar */
.powered-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #202020;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 12px;
    z-index: 10;
}
.b2b-text { color: #2196f3; font-weight: bold; }

/* MOBİL UYUMLULUK */
@media (max-width: 992px) {
    .bg-illustration { display: none; }
    .login-container { width: 100%; min-width: 100%; padding: 20px;
            margin: 0; }
}

label {

    margin-bottom: 5px;
}


