body.login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fb;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.login-wrapper {
    width: 100%;
    max-width: 960px;
    padding: 15px;
}

.login-card {
    display: flex;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
}

.login-left {
    flex: 1;
    background: url("../img/login-01.png") center/cover no-repeat;
    position: relative;
}

.login-hero-text {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.login-right {
    flex: 1;
    padding: 32px 28px;
}

.login-logo {
    height: 40px;
}

.eye-icon {
    font-size: 1.3rem;
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
    .login-card {
        flex-direction: column;
    }
    .login-left {
        display: none !important; /* hide illustration on mobile */
    }
    .login-right {
        padding: 24px 20px;
    }
}
