html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
}

.wrap {
    height: 100%;
}

.app-content {
    display: flex;
    flex-wrap: wrap;
    height: 100vh;      /* Tüm ekranı kaplasın */
    overflow: hidden;   /* Scroll olmasın */
    align-items: center; /* Dikeyde ortala */
}

.image-container,
.form-container {
    flex: 1 1 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-container img {
    max-width: 100%;
    max-height: 60vh;   /* Yüksekliği sınırlayarak taşmayı engelle */
    object-fit: contain;
    border-radius: 10px;
}

.login-box {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}