/* Bidolu ERP - Login sayfası (ekteki tarz: koyu gradient, iki kart) */
.login-page {
    min-height: 100vh;
    margin: 0;
    padding: 24px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1e3a5f 0%, #162a45 35%, #0d1f33 70%, #0a1828 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.login-page::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.login-page::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}
.login-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    max-width: 920px;
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}
.login-info-card {
    flex: 1 1 380px;
    min-width: 280px;
    background: linear-gradient(160deg, #243447 0%, #1a2836 100%);
    padding: 40px 36px;
    border-radius: 16px 0 0 16px;
    color: #e5e7eb;
}
.login-info-header {
    font-size: 0.9rem;
    color: #9ca3af;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.login-info-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(96, 165, 250, 0.25);
    color: #60a5fa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}
.login-info-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 14px;
}
.login-info-desc {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.55;
    margin-bottom: 28px;
}
.login-info-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.login-info-features li {
    padding: 8px 0;
    font-size: 0.95rem;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 10px;
}
.login-info-features li i { font-size: 1rem; flex-shrink: 0; }

.login-form-card {
    flex: 1 1 380px;
    min-width: 280px;
    background: #fff;
    padding: 40px 36px;
    border-radius: 0 16px 16px 0;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.06);
}
.login-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 6px;
}
.login-form-subtitle {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.login-form-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}
.login-form .form-control {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
}
.login-form .form-control:focus {
    background-color: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.btn-login {
    background: linear-gradient(180deg, #60a5fa 0%, #2563eb 100%);
    border: none;
    color: #fff !important;
    font-size: 1rem;
    transition: opacity 0.2s, box-shadow 0.2s;
}
.btn-login:hover {
    opacity: 0.95;
    color: #fff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}
.login-footer { color: #9ca3af !important; }

@media (max-width: 768px) {
    .login-info-card { border-radius: 16px 16px 0 0; }
    .login-form-card { border-radius: 0 0 16px 16px; }
}
