.login-layout {
    display: flex;
    min-height: 100vh;
    width: 100%;
}

.form-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    z-index: 2;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.visual-section {
    flex: 1.2;
    background-color: var(--bg-secondary);
    background-image: url('https://images.unsplash.com/photo-1635776062127-d379bfcba9f8?q=80&w=2532&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    position: relative;
    border-left: 1px solid var(--border);
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: var(--accent);
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .visual-section {
        display: none;
    }
}

/* Einheitliches Design für alle Inputs */
input[type="text"],
input[type="password"] {
    width: 100%;
    padding: 14px 16px; /* Mehr Padding für die "Dicke" */
    font-size: 1rem;
    font-family: inherit;
    background: var(--bg-tertiary); /* Dunkler Hintergrund aus deinem CRM-System */
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: var(--transition);
    outline: none;
    display: block;
}

/* Verhindert den hässlichen weißen Hintergrund bei Autocomplete */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--text-primary);
    -webkit-box-shadow: 0 0 0px 1000px var(--bg-tertiary) inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Fokus-Zustand (Blauer Glow) */
input:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

/* Platzhalter Farbe */
input::placeholder {
    color: var(--text-muted);
    opacity: 0.8;
}