/* --- Auth (Giriş/Kayıt) Sayfaları --- */
.auth-wrapper {
    min-height: 100vh;
    width: 100%;
    display: flex;
    overflow: hidden;
}

.auth-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: #fff;
    position: relative;
}

.auth-right {
    flex: 1;
    background: url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?q=80&w=1920&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
    position: relative;
    display: none; /* Mobilde gizle */
}

/* Tablet ve üstü cihazlarda sağ tarafı göster */
@media (min-width: 992px) {
    .auth-right { display: block; }
    .auth-left { max-width: 500px; } /* Form çok yayılmasın */
}

.auth-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3), rgba(15, 23, 42, 0.8));
}

.auth-logo {
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--dark);
    text-decoration: none;
    margin-bottom: 2rem;
    display: inline-block;
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #64748b;
    text-align: center;
}